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

20180330121048_add_issue_due_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: c64a481fcf08e516e7f22df04cb04244a32603e0 (plain)
1
2
3
4
5
6
7
8
9
class AddIssueDueToNotificationSettings < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :notification_settings, :issue_due, :boolean
  end
end