5 lines
99 B
Ruby
5 lines
99 B
Ruby
class DropUserTokens < ActiveRecord::Migration[7.1]
|
|
def up
|
|
drop_table :user_tokens
|
|
end
|
|
end
|