summaryrefslogtreecommitdiff
path: root/db/migrate/20200717163656_add_moved_project_to_notification_settings.rb
blob: 9c60a678c1f12a903038df31bbdc2d4a81dc25df (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddMovedProjectToNotificationSettings < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :notification_settings, :moved_project, :boolean, default: true, null: false
  end
end