summaryrefslogtreecommitdiff
path: root/db/migrate/20180503141722_add_remote_mirror_available_overridden_to_projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20180503141722_add_remote_mirror_available_overridden_to_projects.rb')
-rw-r--r--db/migrate/20180503141722_add_remote_mirror_available_overridden_to_projects.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20180503141722_add_remote_mirror_available_overridden_to_projects.rb b/db/migrate/20180503141722_add_remote_mirror_available_overridden_to_projects.rb
deleted file mode 100644
index aa3d9a804ab..00000000000
--- a/db/migrate/20180503141722_add_remote_mirror_available_overridden_to_projects.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-class AddRemoteMirrorAvailableOverriddenToProjects < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_column(:projects, :remote_mirror_available_overridden, :boolean) unless column_exists?(:projects, :remote_mirror_available_overridden) # rubocop:disable Migration/AddColumnsToWideTables
- end
-
- def down
- # ee/db/migrate/20171017130239_add_remote_mirror_available_overridden_to_projects_ee.rb will remove the column.
- end
-end