debian-mirror-gitlab/db/migrate/20160227120001_add_event_field_for_web_hook.rb
2016-06-16 23:09:34 +05:30

7 lines
185 B
Ruby

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