gitlab-org--gitlab-foss/db/migrate/20150225065047_add_note_eve...

7 lines
178 B
Ruby

# rubocop:disable all
class AddNoteEventsToServices < ActiveRecord::Migration
def change
add_column :services, :note_events, :boolean, default: true, null: false
end
end