tinyforms/db/migrate/20200405112929_create_authentications.rb
2020-04-05 23:35:53 +02:00

13 lines
264 B
Ruby

class CreateAuthentications < ActiveRecord::Migration[6.0]
def change
create_table :authentications do |t|
t.integer :user_id
t.string :access_token
t.string :refresh_token
t.datetime :expires_at
t.timestamps
end
end
end