# 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. # # This file is the source Rails uses to define your schema when running `rails # db:schema:load`. When creating a new database, `rails db:schema:load` tends to # be faster and is potentially less error prone than running all of your # migrations from scratch. Old migrations may fail to apply correctly if those # migrations use external dependencies or application code. # # It's strongly recommended that you check this file into your version control system. ActiveRecord::Schema.define(version: 2020_07_20_143817) do create_table "articles", force: :cascade do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" end create_table "friendly_id_slugs", force: :cascade do |t| t.string "slug", null: false t.integer "sluggable_id", null: false t.string "sluggable_type", limit: 40 t.datetime "created_at" t.index ["slug", "sluggable_type"], name: "index_friendly_id_slugs_on_slug_and_sluggable_type", unique: true t.index ["sluggable_id"], name: "index_friendly_id_slugs_on_sluggable_id" t.index ["sluggable_type"], name: "index_friendly_id_slugs_on_sluggable_type" end create_table "impressions", force: :cascade do |t| t.string "impressionable_type" t.integer "impressionable_id" t.integer "user_id" t.string "controller_name" t.string "action_name" t.string "view_name" t.string "request_hash" t.string "ip_address" t.string "session_hash" t.text "message" t.text "referrer" t.text "params" t.datetime "created_at", precision: 6, null: false t.datetime "updated_at", precision: 6, null: false t.index ["controller_name", "action_name", "ip_address"], name: "controlleraction_ip_index" t.index ["controller_name", "action_name", "request_hash"], name: "controlleraction_request_index" t.index ["controller_name", "action_name", "session_hash"], name: "controlleraction_session_index" t.index ["impressionable_type", "impressionable_id", "ip_address"], name: "poly_ip_index" t.index ["impressionable_type", "impressionable_id", "params"], name: "poly_params_request_index" t.index ["impressionable_type", "impressionable_id", "request_hash"], name: "poly_request_index" t.index ["impressionable_type", "impressionable_id", "session_hash"], name: "poly_session_index" t.index ["impressionable_type", "message", "impressionable_id"], name: "impressionable_type_message_index" t.index ["user_id"], name: "index_impressions_on_user_id" end create_table "posts", force: :cascade do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" end create_table "profiles", force: :cascade do |t| t.string "username" t.string "slug" t.datetime "created_at" t.datetime "updated_at" end create_table "widgets", force: :cascade do |t| t.string "name" t.integer "impressions_count", default: 0 t.datetime "created_at" t.datetime "updated_at" end end