gitlab-org--gitlab-foss/db/migrate/20200717163656_add_moved_pr...

10 lines
241 B
Ruby

# 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