Class: DropUnneededTables

Inherits:
Object
  • Object
show all
Defined in:
lib/osso/db/migrate/20200723162228_drop_unneeded_tables.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
# File 'lib/osso/db/migrate/20200723162228_drop_unneeded_tables.rb', line 2

def change
  drop_table(:oauth_grants, if_exists: true)
  drop_table(:oauth_access_tokens, if_exists: true)
  drop_table(:oauth_applications, if_exists: true)


end