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
path: root/db
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2018-03-07 17:03:26 +0300
committerJames Lopez <james@jameslopez.es>2018-03-07 17:03:26 +0300
commit92cf5d8ea5bb3c9f5a9d1f405d9811441aa4252a (patch)
tree73487834db52f69dbbaeb5ba6df1caefa9445887 /db
parent8d6f74ceefd682f756ee8f1300efae4d0f51c3c0 (diff)
Revert "Cleanup after adding MR diff's commit_count"
This reverts commit 0b7d108 Fixed confict in schema.rb
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20180304204842_clean_commits_count_migration.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20180304204842_clean_commits_count_migration.rb b/db/migrate/20180304204842_clean_commits_count_migration.rb
deleted file mode 100644
index ace4c6aa1cf..00000000000
--- a/db/migrate/20180304204842_clean_commits_count_migration.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-class CleanCommitsCountMigration < ActiveRecord::Migration
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- Gitlab::BackgroundMigration.steal('AddMergeRequestDiffCommitsCount')
- end
-
- def down
- end
-end