# encoding: UTF-8 # This file is auto-generated from the current state of the database. Instead # of editing this file, please use the migrations feature of Active Record to # incrementally modify your database, and then regenerate this schema definition. # # Note that this schema.rb definition is the authoritative source for your # database schema. If you need to create the application database on another # system, you should be using db:schema:load, not running all the migrations # from scratch. The latter is a flawed and unsustainable approach (the more migrations # you'll amass, the slower it'll run and the greater likelihood for issues). # # It's strongly recommended that you check this file into your version control system. ActiveRecord::Schema.define(version: 20151014143908) do create_table "awaken_types", force: :cascade do |t| t.string "name" t.datetime "created_at", null: false t.datetime "updated_at", null: false end # Could not dump table "cards" because of following NoMethodError # undefined method `[]' for nil:NilClass create_table "cards_links", id: false, force: :cascade do |t| t.integer "card_id" t.integer "link_id" t.datetime "created_at", null: false t.datetime "updated_at", null: false end add_index "cards_links", ["card_id"], name: "index_cards_links_on_card_id" add_index "cards_links", ["link_id"], name: "index_cards_links_on_link_id" create_table "characters", force: :cascade do |t| t.string "name" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "leader_skills", force: :cascade do |t| t.string "description" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "links", force: :cascade do |t| t.string "name" t.string "description" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "medals", force: :cascade do |t| t.string "name" t.text "location" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "passive_skills", force: :cascade do |t| t.string "name" t.string "description" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "rarities", force: :cascade do |t| t.string "name" t.string "description" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "roles", force: :cascade do |t| t.string "name" t.integer "resource_id" t.string "resource_type" t.datetime "created_at" t.datetime "updated_at" end add_index "roles", ["name", "resource_type", "resource_id"], name: "index_roles_on_name_and_resource_type_and_resource_id" add_index "roles", ["name"], name: "index_roles_on_name" create_table "super_attacks", force: :cascade do |t| t.string "name" t.string "description" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "types", force: :cascade do |t| t.string "name" t.string "description" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "users", force: :cascade do |t| t.string "provider" t.string "uid" t.string "nickname" t.string "email" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "users_roles", id: false, force: :cascade do |t| t.integer "user_id" t.integer "role_id" end add_index "users_roles", ["user_id", "role_id"], name: "index_users_roles_on_user_id_and_role_id" create_table "version_associations", force: :cascade do |t| t.integer "version_id" t.string "foreign_key_name", null: false t.integer "foreign_key_id" end add_index "version_associations", ["foreign_key_name", "foreign_key_id"], name: "index_version_associations_on_foreign_key" add_index "version_associations", ["version_id"], name: "index_version_associations_on_version_id" create_table "versions", force: :cascade do |t| t.string "item_type", null: false t.integer "item_id", null: false t.string "event", null: false t.string "whodunnit" t.text "object", limit: 1073741823 t.datetime "created_at" t.integer "transaction_id" end add_index "versions", ["item_type", "item_id"], name: "index_versions_on_item_type_and_item_id" add_index "versions", ["transaction_id"], name: "index_versions_on_transaction_id" end