schema.rb 5.4KB

    # 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 => 20130819160603) do create_table "agent_logs", :force => true do |t| t.integer "agent_id", :null => false t.text "message", :null => false t.integer "level", :default => 3, :null => false t.integer "inbound_event_id" t.integer "outbound_event_id" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end create_table "agents", :force => true do |t| t.integer "user_id" t.text "options" t.string "type" t.string "name" t.string "schedule" t.integer "events_count" t.datetime "last_check_at" t.datetime "last_receive_at" t.integer "last_checked_event_id" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false t.text "memory", :limit => 2147483647 t.datetime "last_webhook_at" end add_index "agents", ["schedule"], :name => "index_agents_on_schedule" add_index "agents", ["type"], :name => "index_agents_on_type" add_index "agents", ["user_id", "created_at"], :name => "index_agents_on_user_id_and_created_at" create_table "delayed_jobs", :force => true do |t| t.integer "priority", :default => 0 t.integer "attempts", :default => 0 t.text "handler" t.text "last_error" t.datetime "run_at" t.datetime "locked_at" t.datetime "failed_at" t.string "locked_by" t.string "queue" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index "delayed_jobs", ["priority", "run_at"], :name => "delayed_jobs_priority" create_table "events", :force => true do |t| t.integer "user_id" t.integer "agent_id" t.decimal "lat", :precision => 15, :scale => 10 t.decimal "lng", :precision => 15, :scale => 10 t.text "payload", :limit => 16777215 t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index "events", ["agent_id", "created_at"], :name => "index_events_on_agent_id_and_created_at" add_index "events", ["user_id", "created_at"], :name => "index_events_on_user_id_and_created_at" create_table "links", :force => true do |t| t.integer "source_id" t.integer "receiver_id" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index "links", ["receiver_id", "source_id"], :name => "index_links_on_receiver_id_and_source_id" add_index "links", ["source_id", "receiver_id"], :name => "index_links_on_source_id_and_receiver_id" create_table "rails_admin_histories", :force => true do |t| t.text "message" t.string "username" t.integer "item" t.string "table" t.integer "month", :limit => 2 t.integer "year", :limit => 8 t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index "rails_admin_histories", ["item", "table", "month", "year"], :name => "index_rails_admin_histories" 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", :null => false t.datetime "updated_at", :null => false t.boolean "admin", :default => false, :null => false t.integer "failed_attempts", :default => 0 t.string "unlock_token" t.datetime "locked_at" t.string "username", :null => false t.string "invitation_code", :null => false 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 add_index "users", ["unlock_token"], :name => "index_users_on_unlock_token", :unique => true add_index "users", ["username"], :name => "index_users_on_username", :unique => true end