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:
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, 0 insertions, 10 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
deleted file mode 100644
index 791e9c845a6..00000000000
--- a/db/migrate/20170301195939_rename_ci_commits_to_ci_pipelines.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-class RenameCiCommitsToCiPipelines < ActiveRecord::Migration[4.2]
- 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