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

7 lines
190 B
Ruby

# rubocop:disable all
class AddEventFieldForWebHook < ActiveRecord::Migration[4.2]
def change
add_column :web_hooks, :wiki_page_events, :boolean, default: false, null: false
end
end