1
0
mirror of https://github.com/danbee/my-images synced 2025-03-04 08:49:05 +00:00
my-images/db/migrate/20140324161505_create_users.rb

14 lines
244 B
Ruby

class CreateUsers < ActiveRecord::Migration[5.2]
def change
create_table :users do |t|
t.string :email
t.string :username
t.string :name
t.string :provider
t.string :uid
t.timestamps
end
end
end