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/20180813101999_change_default_of_auto_devops_instance_wide.rb')
-rw-r--r--db/migrate/20180813101999_change_default_of_auto_devops_instance_wide.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20180813101999_change_default_of_auto_devops_instance_wide.rb b/db/migrate/20180813101999_change_default_of_auto_devops_instance_wide.rb
deleted file mode 100644
index da101bc76e3..00000000000
--- a/db/migrate/20180813101999_change_default_of_auto_devops_instance_wide.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class ChangeDefaultOfAutoDevopsInstanceWide < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def up
- change_column_default :application_settings, :auto_devops_enabled, true
- end
-
- def down
- change_column_default :application_settings, :auto_devops_enabled, false
- end
-end