Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160617301627_add_events_to_notification_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 609596f45e455b57bfb245c7c8007bf89bdb3943 (plain)
1
2
3
4
5
6
7
class AddEventsToNotificationSettings < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

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