c64775e24c
For those who upgraded to a version that included the previous backport implementation with migration 20190311132500.
19 lines
537 B
Ruby
19 lines
537 B
Ruby
class AddDefaultProjectCreationSetting < ActiveRecord::Migration[4.2]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
disable_ddl_transaction!
|
|
|
|
def up
|
|
unless column_exists?(:application_settings, :default_project_creation)
|
|
add_column_with_default(:application_settings, :default_project_creation, :integer, default: 2)
|
|
end
|
|
end
|
|
|
|
def down
|
|
if column_exists?(:application_settings, :default_project_creation)
|
|
remove_column(:application_settings, :default_project_creation)
|
|
end
|
|
end
|
|
end
|