467b45b427
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
5 lines
148 B
Ruby
5 lines
148 B
Ruby
class RemoveSuperAdminAccessTokes < ActiveRecord::Migration[6.0]
|
|
def change
|
|
AccessToken.where(owner_type: 'SuperAdmin').destroy_all
|
|
end
|
|
end
|