debian-mirror-gitlab/db/migrate/20160519203051_add_developers_can_merge_to_protected_branches.rb
2018-12-23 12:14:25 +05:30

15 lines
386 B
Ruby

class AddDevelopersCanMergeToProtectedBranches < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_column_with_default :protected_branches, :developers_can_merge, :boolean, default: false, allow_null: false
end
def down
remove_column :protected_branches, :developers_can_merge
end
end