Fix the backported migration

For those who upgraded to a version that included the previous
backport implementation with migration 20190311132500.
This commit is contained in:
Michael Kozono 2019-04-08 22:10:21 +00:00 committed by Kamil Trzciński
parent 225edb0d2d
commit c64775e24c
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