123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- # 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 => 20140408150825) 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_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
- 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", :limit => 16777215
- 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
- t.datetime "expires_at"
- end
- add_index "events", ["agent_id", "created_at"], :name => "index_events_on_agent_id_and_created_at"
- add_index "events", ["expires_at"], :name => "index_events_on_expires_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
- 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"
- add_index "links", ["source_id", "receiver_id"], :name => "index_links_on_source_id_and_receiver_id"
- 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
- 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
|