summaryrefslogtreecommitdiff
path: root/db/migrate/20160617301627_add_events_to_notification_settings.rb
blob: 109817e3d8abbc7558f79cfc71c3a0530f5f282c (plain)
1
2
3
4
5
6
7
class AddEventsToNotificationSettings < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  def change
    add_column :notification_settings, :events, :text
  end
end