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
2014-03-24 17:06:09 +00:00

14 lines
239 B
Ruby

class CreateUsers < ActiveRecord::Migration
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