2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2015-12-07 07:23:23 -05:00
|
|
|
class AddBuildEventsToServices < ActiveRecord::Migration
|
2015-12-23 13:39:44 -05:00
|
|
|
def change
|
2015-12-07 07:23:23 -05:00
|
|
|
add_column :services, :build_events, :boolean, default: false, null: false
|
|
|
|
add_column :web_hooks, :build_events, :boolean, default: false, null: false
|
|
|
|
end
|
|
|
|
end
|