7e204cf389
Supports four different event types all bundled under the "note" event type: - comments on a commit - comments on an issue - comments on a merge request - comments on a code snippet
5 lines
156 B
Ruby
5 lines
156 B
Ruby
class AddNoteEventsToServices < ActiveRecord::Migration
|
|
def change
|
|
add_column :services, :note_events, :boolean, default: true, null: false
|
|
end
|
|
end
|