# 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: 20131220193113) do create_table "accounts", force: true do |t| t.integer "account_number" t.integer "employee_id" t.datetime "created_at" t.datetime "updated_at" end add_index "accounts", ["employee_id"], name: "index_accounts_on_employee_id" create_table "comments", force: true do |t| t.text "body" t.integer "customer_id" t.datetime "created_at" t.datetime "updated_at" end add_index "comments", ["customer_id"], name: "index_comments_on_customer_id" create_table "customers", force: true do |t| t.string "email" t.string "name" t.boolean "active" t.integer "group_id" t.datetime "created_at" t.datetime "updated_at" end add_index "customers", ["group_id"], name: "index_customers_on_group_id" create_table "employees", force: true do |t| t.string "name" t.string "email" t.integer "income" t.boolean "bonus" t.integer "position_id" t.datetime "created_at" t.datetime "updated_at" t.string "title" end add_index "employees", ["position_id"], name: "index_employees_on_position_id" create_table "employees_skills", id: false, force: true do |t| t.integer "employee_id" t.integer "skill_id" t.datetime "created_at" t.datetime "updated_at" end create_table "groups", force: true do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" end create_table "positions", force: true do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" end create_table "projects", force: true do |t| t.string "name" t.text "description" t.integer "employee_id" t.datetime "created_at" t.datetime "updated_at" end add_index "projects", ["employee_id"], name: "index_projects_on_employee_id" create_table "skills", force: true do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" end create_table "tasks", force: true do |t| t.string "name" t.text "description" t.integer "project_id" t.datetime "created_at" t.datetime "updated_at" end add_index "tasks", ["project_id"], name: "index_tasks_on_project_id" create_table "users", force: true do |t| t.string "email", 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 t.datetime "current_sign_in_at" t.datetime "last_sign_in_at" t.string "current_sign_in_ip" t.string "last_sign_in_ip" t.datetime "created_at" t.datetime "updated_at" end add_index "users", ["email"], name: "index_users_on_email", unique: true add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true end