Commit 4c4f72f6 authored by Kamil Trzciński's avatar Kamil Trzciński

Backport `add_default_project_creation_setting` to CE

parent 8ac3263a
...@@ -6,14 +6,10 @@ class AddDefaultProjectCreationSetting < ActiveRecord::Migration[4.2] ...@@ -6,14 +6,10 @@ class AddDefaultProjectCreationSetting < ActiveRecord::Migration[4.2]
disable_ddl_transaction! disable_ddl_transaction!
def up def up
unless column_exists?(:application_settings, :default_project_creation)
add_column_with_default(:application_settings, :default_project_creation, :integer, default: 2) add_column_with_default(:application_settings, :default_project_creation, :integer, default: 2)
end end
end
def down def down
if column_exists?(:application_settings, :default_project_creation)
remove_column(:application_settings, :default_project_creation) remove_column(:application_settings, :default_project_creation)
end end
end
end end
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class AddDefaultProjectCreationApplicationSetting < ActiveRecord::Migration[5.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
unless column_exists?(:application_settings, :default_project_creation)
add_column(:application_settings, :default_project_creation, :integer, default: 2, null: false)
end
end
def down
if column_exists?(:application_settings, :default_project_creation)
remove_column(:application_settings, :default_project_creation)
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment