6 lines
165 B
Ruby
6 lines
165 B
Ruby
# rubocop:disable all
|
|
class AddEventToServices < ActiveRecord::Migration
|
|
def change
|
|
add_column :services, :wiki_page_events, :boolean, default: true
|
|
end
|
|
end
|