8 lines
187 B
Ruby
8 lines
187 B
Ruby
|
class AddEventsToNotificationSettings < ActiveRecord::Migration
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
def change
|
||
|
add_column :notification_settings, :events, :text
|
||
|
end
|
||
|
end
|