debian-mirror-gitlab/db/migrate/20160519203051_add_developers_can_merge_to_protected_branches.rb
2016-08-24 12:49:21 +05:30

10 lines
286 B
Ruby

class AddDevelopersCanMergeToProtectedBranches < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
disable_ddl_transaction!
def change
add_column_with_default :protected_branches, :developers_can_merge, :boolean, default: false, allow_null: false
end
end