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/20180508055821_make_remote_mirrors_disabled_by_default.rb')
-rw-r--r--db/migrate/20180508055821_make_remote_mirrors_disabled_by_default.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/db/migrate/20180508055821_make_remote_mirrors_disabled_by_default.rb b/db/migrate/20180508055821_make_remote_mirrors_disabled_by_default.rb
deleted file mode 100644
index 81aa18c8b86..00000000000
--- a/db/migrate/20180508055821_make_remote_mirrors_disabled_by_default.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-class MakeRemoteMirrorsDisabledByDefault < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- def up
- change_column_default :remote_mirrors, :enabled, false
- end
-
- def down
- change_column_default :remote_mirrors, :enabled, true
- end
-end