Merge branch 'mk/follow-up-fix-default-project-creation-migration' into 'master'

Fix default_project_creation already exists

See merge request gitlab-org/gitlab-ce!27144
This commit is contained in:
Kamil Trzciński 2019-04-08 22:10:21 +00:00
commit 61ed923968
1 changed files with 6 additions and 2 deletions

View File

@ -6,10 +6,14 @@ class AddDefaultProjectCreationSetting < ActiveRecord::Migration[4.2]
disable_ddl_transaction!
def up
add_column_with_default(:application_settings, :default_project_creation, :integer, default: 2)
unless column_exists?(:application_settings, :default_project_creation)
add_column_with_default(:application_settings, :default_project_creation, :integer, default: 2)
end
end
def down
remove_column(:application_settings, :default_project_creation)
if column_exists?(:application_settings, :default_project_creation)
remove_column(:application_settings, :default_project_creation)
end
end
end