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

  DOWNTIME = false

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