Drop user tokens table

This commit is contained in:
Tom Hughes 2024-02-28 20:59:34 +00:00
parent fa55f3878a
commit 29cc21c599
10 changed files with 10 additions and 137 deletions

View file

@ -0,0 +1,5 @@
class DropUserTokens < ActiveRecord::Migration[7.1]
def up
drop_table :user_tokens
end
end