# 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: 20170703013609) do create_table "ckeditor_assets", force: :cascade do |t| t.string "data_file_name", null: false t.string "data_content_type" t.integer "data_file_size" t.string "data_fingerprint" t.string "type", limit: 30 t.integer "width" t.integer "height" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["type"], name: "index_ckeditor_assets_on_type" end create_table "entries", force: :cascade do |t| t.string "title" t.text "body" t.string "slug", null: false t.string "type", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "records", force: :cascade do |t| t.text "description" t.string "recordable_type", limit: 191 t.integer "recordable_id" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["recordable_type", "recordable_id"], name: "index_records_on_recordable_type_and_recordable_id" end create_table "users", force: :cascade do |t| t.string "login", limit: 191, default: "", null: false t.string "email", limit: 191, default: "", null: false t.string "encrypted_password", default: "", null: false t.string "reset_password_token", limit: 191 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.string "current_sign_in_ip" t.string "last_sign_in_ip" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["email"], name: "index_users_on_email", unique: true t.index ["login"], name: "index_users_on_login", unique: true t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true end end