canvas-lms/db/migrate/20130326210659_add_manage_s...

13 lines
328 B
Ruby
Raw Normal View History

class AddManageStorageQuotasPermission < ActiveRecord::Migration
tag :postdeploy
def self.up
DataFixup::CopyRoleOverrides.send_later_if_production_enqueue_args(:run,
{:priority => Delayed::LOW_PRIORITY, :max_attempts => 1},
:manage_account_settings, :manage_storage_quotas)
end
def self.down
end
end