canvas-lms/db/migrate/20121115210333_populate_str...

13 lines
275 B
Ruby

class PopulateStreamItemAssociations < ActiveRecord::Migration
tag :postdeploy
disable_ddl_transaction!
def self.up
# the drop migration now exists, so this can no longer run async
DataFixup::PopulateStreamItemAssociations.run
end
def self.down
end
end