tinyforms/db/migrate/20200405114101_create_users.rb

12 lines
200 B
Ruby

class CreateUsers < ActiveRecord::Migration[6.0]
def change
create_table :users do |t|
t.string :email
t.string :name
t.string :google_id
t.timestamps
end
end
end