Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil TrzciƄski <ayufan@ayufan.eu>2017-03-18 02:06:11 +0300
committerRobert Speicher <robert@gitlab.com>2017-03-18 02:06:11 +0300
commit12dd5ac22110bc3327297232d96f2afebaefc5eb (patch)
treec1ec703f9c7072df5097ba70c3e4e7c132a44a83 /db/migrate/20170301195939_rename_ci_commits_to_ci_pipelines.rb
parent94246c7aa01bd825953e6676f79aa9db51209822 (diff)
All CI offline migrations
Diffstat (limited to 'db/migrate/20170301195939_rename_ci_commits_to_ci_pipelines.rb')
-rw-r--r--db/migrate/20170301195939_rename_ci_commits_to_ci_pipelines.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20170301195939_rename_ci_commits_to_ci_pipelines.rb b/db/migrate/20170301195939_rename_ci_commits_to_ci_pipelines.rb
new file mode 100644
index 00000000000..4f061d96392
--- /dev/null
+++ b/db/migrate/20170301195939_rename_ci_commits_to_ci_pipelines.rb
@@ -0,0 +1,10 @@
+class RenameCiCommitsToCiPipelines < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = true
+ DOWNTIME_REASON = 'Rename table ci_commits to ci_pipelines'
+
+ def change
+ rename_table 'ci_commits', 'ci_pipelines'
+ end
+end