debian-mirror-gitlab/db/migrate/20170503023315_add_repository_update_events_to_web_hooks.rb

16 lines
366 B
Ruby
Raw Normal View History

2019-01-03 12:48:30 +05:30
class AddRepositoryUpdateEventsToWebHooks < ActiveRecord::Migration
2017-09-10 17:25:29 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_column_with_default :web_hooks, :repository_update_events, :boolean, default: false, allow_null: false
end
def down
remove_column :web_hooks, :repository_update_events
end
end