debian-mirror-gitlab/db/migrate/20161012180455_add_repository_access_level_to_project_feature.rb
2019-02-15 15:39:39 +05:30

15 lines
387 B
Ruby

class AddRepositoryAccessLevelToProjectFeature < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
disable_ddl_transaction!
DOWNTIME = false
def up
add_column_with_default(:project_features, :repository_access_level, :integer, default: ProjectFeature::ENABLED)
end
def down
remove_column :project_features, :repository_access_level
end
end