debian-mirror-gitlab/db/migrate/20161118183841_add_commit_events_to_services.rb
2019-02-15 15:39:39 +05:30

16 lines
338 B
Ruby

class AddCommitEventsToServices < ActiveRecord::Migration[4.2]
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