mirror of
https://github.com/danbee/my-images
synced 2025-03-04 08:49:05 +00:00
14 lines
239 B
Ruby
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
|