canvas-lms/db/migrate/20150817134210_set_devloper...

8 lines
175 B
Ruby

class SetDevloperKeysAccountIdNil < ActiveRecord::Migration
tag :postdeploy
def up
DeveloperKey.where("account_id IS NOT NULL").update_all(account_id: nil)
end
end