gitlab-org--gitlab-foss/db/migrate/20160519203051_add_develope...

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