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.
 
 
 
 
 

34 lines
1.2 KiB

  1. # encoding: UTF-8
  2. # This file is auto-generated from the current state of the database. Instead
  3. # of editing this file, please use the migrations feature of Active Record to
  4. # incrementally modify your database, and then regenerate this schema definition.
  5. #
  6. # Note that this schema.rb definition is the authoritative source for your
  7. # database schema. If you need to create the application database on another
  8. # system, you should be using db:schema:load, not running all the migrations
  9. # from scratch. The latter is a flawed and unsustainable approach (the more migrations
  10. # you'll amass, the slower it'll run and the greater likelihood for issues).
  11. #
  12. # It's strongly recommended that you check this file into your version control system.
  13. ActiveRecord::Schema.define(version: 20150314013929) do
  14. create_table "admin_settings", force: :cascade do |t|
  15. t.string "key"
  16. t.string "value"
  17. end
  18. create_table "users", force: :cascade do |t|
  19. t.string "name"
  20. t.string "email"
  21. t.string "password_digest"
  22. t.string "api_key"
  23. t.string "api_verify"
  24. t.boolean "is_admin"
  25. t.boolean "is_corp"
  26. t.datetime "created_at", null: false
  27. t.datetime "updated_at", null: false
  28. end
  29. end