socialforge/db/migrate/20160504060751_create_ssos.rb

17 lines
314 B
Ruby
Raw Normal View History

2016-05-04 15:40:18 +08:00
class CreateSsos < ActiveRecord::Migration
def change
create_table :ssos do |t|
t.references :user
t.string :openid
t.string :name
t.string :password
t.string :email
t.integer :sex
t.string :school
t.timestamps
end
add_index :ssos, :user_id
end
end