schema.rb 7.6KB

    # 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: 20140809211540) 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" t.datetime "last_web_request_at" t.integer "keep_events_for", default: 0, null: false t.datetime "last_event_at" t.datetime "last_error_log_at" t.boolean "propagate_immediately", default: false, null: false t.boolean "disabled", default: false, null: false t.integer "service_id" t.string "guid", null: false end add_index "agents", ["guid"], name: "index_agents_on_guid", using: :btree add_index "agents", ["schedule"], name: "index_agents_on_schedule", using: :btree add_index "agents", ["type"], name: "index_agents_on_type", using: :btree add_index "agents", ["user_id", "created_at"], name: "index_agents_on_user_id_and_created_at", using: :btree 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", using: :btree 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" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.datetime "expires_at" end add_index "events", ["agent_id", "created_at"], name: "index_events_on_agent_id_and_created_at", using: :btree add_index "events", ["expires_at"], name: "index_events_on_expires_at", using: :btree add_index "events", ["user_id", "created_at"], name: "index_events_on_user_id_and_created_at", using: :btree 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 t.integer "event_id_at_creation", default: 0, null: false end add_index "links", ["receiver_id", "source_id"], name: "index_links_on_receiver_id_and_source_id", using: :btree add_index "links", ["source_id", "receiver_id"], name: "index_links_on_source_id_and_receiver_id", using: :btree create_table "scenario_memberships", force: true do |t| t.integer "agent_id", null: false t.integer "scenario_id", null: false t.datetime "created_at" t.datetime "updated_at" end add_index "scenario_memberships", ["agent_id"], name: "index_scenario_memberships_on_agent_id", using: :btree add_index "scenario_memberships", ["scenario_id"], name: "index_scenario_memberships_on_scenario_id", using: :btree create_table "scenarios", force: true do |t| t.string "name", null: false t.integer "user_id", null: false t.datetime "created_at" t.datetime "updated_at" t.text "description" t.boolean "public", default: false, null: false t.string "guid", null: false t.string "source_url" end add_index "scenarios", ["user_id", "guid"], name: "index_scenarios_on_user_id_and_guid", unique: true, using: :btree create_table "services", force: true do |t| t.integer "user_id", null: false t.string "provider", null: false t.string "name", null: false t.text "token", null: false t.text "secret" t.text "refresh_token" t.datetime "expires_at" t.boolean "global", default: false t.text "options" t.datetime "created_at" t.datetime "updated_at" end add_index "services", ["user_id", "global"], name: "index_accounts_on_user_id_and_global", using: :btree create_table "user_credentials", force: true do |t| t.integer "user_id", null: false t.string "credential_name", null: false t.text "credential_value", null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false t.string "mode", default: "text", null: false end add_index "user_credentials", ["user_id", "credential_name"], name: "index_user_credentials_on_user_id_and_credential_name", unique: true, using: :btree 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 t.integer "scenario_count", default: 0, null: false end add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree add_index "users", ["unlock_token"], name: "index_users_on_unlock_token", unique: true, using: :btree add_index "users", ["username"], name: "index_users_on_username", unique: true, using: :btree end