debian-mirror-gitlab/db/migrate/20160519203051_add_developers_can_merge_to_protected_branches.rb

10 lines
286 B
Ruby
Raw Normal View History

2016-08-24 12:49:21 +05:30
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