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
path: root/db
diff options
context:
space:
mode:
authorMichael Kozono <mkozono@gmail.com>2019-04-09 01:10:21 +0300
committerKamil TrzciƄski <ayufan@ayufan.eu>2019-04-09 01:10:21 +0300
commitc64775e24cfe5aacf4c3511e7280f32dd551a4df (patch)
tree70a5158f4d519f4e41d17fefb48fcc6fe7dc4e64 /db
parent225edb0d2d7737cf52ef5cd358082d08e20feaa4 (diff)
Fix the backported migration
For those who upgraded to a version that included the previous backport implementation with migration 20190311132500.
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20180115094742_add_default_project_creation_setting.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/db/migrate/20180115094742_add_default_project_creation_setting.rb b/db/migrate/20180115094742_add_default_project_creation_setting.rb
index 22de39e1672..465a89c39e8 100644
--- a/db/migrate/20180115094742_add_default_project_creation_setting.rb
+++ b/db/migrate/20180115094742_add_default_project_creation_setting.rb
@@ -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