db/schema.rb
# 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: 20170718200142) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "games", force: :cascade do |t|
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "name"
t.string "result"
t.integer "white_player_id"
t.integer "black_player_id"
t.integer "turn", default: 0
t.index ["black_player_id"], name: "index_games_on_black_player_id", using: :btree
t.index ["white_player_id"], name: "index_games_on_white_player_id", using: :btree
end
create_table "pieces", force: :cascade do |t|
t.string "name"
t.string "color"
t.integer "x_pos"
t.integer "y_pos"
t.integer "game_id"
t.boolean "captured", default: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "icon"
t.integer "turn", default: 0
t.index ["captured"], name: "index_pieces_on_captured", using: :btree
t.index ["color"], name: "index_pieces_on_color", using: :btree
t.index ["game_id"], name: "index_pieces_on_game_id", using: :btree
t.index ["x_pos", "y_pos"], name: "index_pieces_on_x_pos_and_y_pos", using: :btree
end
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "nickname", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.inet "current_sign_in_ip"
t.inet "last_sign_in_ip"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "provider"
t.string "uid"
t.index ["email"], name: "index_users_on_email", unique: true, using: :btree
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
end
add_foreign_key "games", "users", column: "black_player_id"
add_foreign_key "games", "users", column: "white_player_id"
end