# 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 to check this file into your version control system. ActiveRecord::Schema.define(:version => 20150207140310) do create_table "articles", :force => true do |t| t.string "name" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end create_table "friendly_id_slugs", :force => true do |t| t.string "slug", :null => false t.integer "sluggable_id", :null => false t.string "sluggable_type", :limit => 40 t.datetime "created_at" end add_index "friendly_id_slugs", ["slug", "sluggable_type"], :name => "index_friendly_id_slugs_on_slug_and_sluggable_type", :unique => true add_index "friendly_id_slugs", ["sluggable_id"], :name => "index_friendly_id_slugs_on_sluggable_id" add_index "friendly_id_slugs", ["sluggable_type"], :name => "index_friendly_id_slugs_on_sluggable_type" create_table "impressions", :force => true 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 "params" t.text "referrer" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index "impressions", ["controller_name", "action_name", "ip_address"], :name => "controlleraction_ip_index" add_index "impressions", ["controller_name", "action_name", "request_hash"], :name => "controlleraction_request_index" add_index "impressions", ["controller_name", "action_name", "session_hash"], :name => "controlleraction_session_index" add_index "impressions", ["impressionable_type", "impressionable_id", "ip_address"], :name => "poly_ip_index" add_index "impressions", ["impressionable_type", "impressionable_id", "params"], :name => "poly_params_request_index" add_index "impressions", ["impressionable_type", "impressionable_id", "request_hash"], :name => "poly_request_index" add_index "impressions", ["impressionable_type", "impressionable_id", "session_hash"], :name => "poly_session_index" add_index "impressions", ["impressionable_type", "message", "impressionable_id"], :name => "impressionable_type_message_index" add_index "impressions", ["user_id"], :name => "index_impressions_on_user_id" create_table "posts", :force => true do |t| t.string "name" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end create_table "profiles", :force => true do |t| t.string "username" t.string "slug" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end create_table "widgets", :force => true do |t| t.string "name" t.integer "impressions_count", :default => 0 t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end end