diff --git a/db/migrate/20160719102542_remove_depricated_api_structure.rb b/db/migrate/20160719102542_remove_depricated_api_structure.rb new file mode 100644 index 0000000..d19cfb9 --- /dev/null +++ b/db/migrate/20160719102542_remove_depricated_api_structure.rb @@ -0,0 +1,9 @@ +class RemoveDepricatedApiStructure < ActiveRecord::Migration + def up + drop_table :token_permissions + end + + def down + raise ActiveRecord::IrreversibleMigration + end +end