diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2018-03-08 13:07:36 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2018-03-08 13:07:36 +0000 |
commit | fcda1e96e8955f448411830962026ee0f9285b11 (patch) | |
tree | a6c0fc4de47844a847945c2a3be72749eebc7afa /db | |
parent | f9dfe343927381cffc882cf25cbc6f42708834ee (diff) | |
parent | 7db225e480e78948a1fc70517b4c8ab6ac1aeaf5 (diff) | |
download | gitlab-ce-fcda1e96e8955f448411830962026ee0f9285b11.tar.gz |
Merge branch 'jprovazn-revert-commit-cleanup' into 'master'
Revert "Cleanup after adding MR diff's commit_count"
See merge request gitlab-org/gitlab-ce!17639
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20180304204842_clean_commits_count_migration.rb | 14 |
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 |