A corporation manager and dashboard for EVE Online
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
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