canvas-lms/db/migrate/20190312131154_make_account...

10 lines
209 B
Ruby

# frozen_string_literal: true
class MakeAccountNotificationUsersNotNull < ActiveRecord::Migration[5.1]
tag :postdeploy
def change
change_column_null :account_notifications, :user_id, false
end
end