A corporation manager and dashboard for EVE Online
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

16 行
315 B

  1. class CreateUsers < ActiveRecord::Migration
  2. def change
  3. create_table :users do |t|
  4. t.string :name
  5. t.string :email
  6. t.string :password_digest
  7. t.string :api_key
  8. t.string :api_verify
  9. t.boolean :is_admin
  10. t.boolean :is_corp
  11. t.timestamps null: false
  12. end
  13. end
  14. end