2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2015-12-23 02:04:40 +05:30
|
|
|
class AddBuildEventsToServices < ActiveRecord::Migration
|
2016-01-14 18:37:52 +05:30
|
|
|
def change
|
2015-12-23 02:04:40 +05:30
|
|
|
add_column :services, :build_events, :boolean, default: false, null: false
|
|
|
|
add_column :web_hooks, :build_events, :boolean, default: false, null: false
|
|
|
|
end
|
|
|
|
end
|