debian-mirror-gitlab/db/migrate/20161118183841_add_commit_events_to_services.rb

16 lines
333 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
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