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

6 lines
156 B
Ruby

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