borders/db/migrate/20220410011426_create_users.rb

12 lines
199 B
Ruby

class CreateUsers < ActiveRecord::Migration[7.0]
def change
create_table :users do |t|
t.string :provider
t.string :uid
t.string :border
t.timestamps
end
end
end