canvas-lms/db/migrate/20130310213118_generate_old...

10 lines
276 B
Ruby

class GenerateOldAccountOpaqueIDs < ActiveRecord::Migration
tag :postdeploy
def self.up
# Set all the root account opaque ids to their old value so that LTI
# integrations won't break
DataFixup::SetAccountLtiOpaqueIds.send_later_if_production(:run)
end
end