Fix backport of project_creation_level migration
This commit is contained in:
parent
923d49d477
commit
d3ae4976dd
2 changed files with 17 additions and 22 deletions
|
@ -0,0 +1,17 @@
|
|||
class AddProjectCreationLevelToGroups < ActiveRecord::Migration[4.2]
|
||||
include Gitlab::Database::MigrationHelpers
|
||||
|
||||
DOWNTIME = false
|
||||
|
||||
def up
|
||||
unless column_exists?(:namespaces, :project_creation_level)
|
||||
add_column(:namespaces, :project_creation_level, :integer)
|
||||
end
|
||||
end
|
||||
|
||||
def down
|
||||
if column_exists?(:namespaces, :project_creation_level)
|
||||
remove_column(:namespaces, :project_creation_level, :integer)
|
||||
end
|
||||
end
|
||||
end
|
|
@ -1,22 +0,0 @@
|
|||
# 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 AddProjectCreationLevelToNamespaces < ActiveRecord::Migration[5.0]
|
||||
include Gitlab::Database::MigrationHelpers
|
||||
|
||||
DOWNTIME = false
|
||||
|
||||
def up
|
||||
unless column_exists?(:namespaces, :project_creation_level)
|
||||
add_column :namespaces, :project_creation_level, :integer
|
||||
end
|
||||
end
|
||||
|
||||
def down
|
||||
unless column_exists?(:namespaces, :project_creation_level)
|
||||
remove_column :namespaces, :project_creation_level, :integer
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue