16 lines
333 B
Ruby
16 lines
333 B
Ruby
|
class AddCommitEventsToServices < ActiveRecord::Migration
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
disable_ddl_transaction!
|
||
|
|
||
|
def up
|
||
|
add_column_with_default(:services, :commit_events, :boolean, default: true, allow_null: false)
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column(:services, :commit_events)
|
||
|
end
|
||
|
end
|