schema.rb 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. # encoding: UTF-8
  2. # This file is auto-generated from the current state of the database. Instead
  3. # of editing this file, please use the migrations feature of Active Record to
  4. # incrementally modify your database, and then regenerate this schema definition.
  5. #
  6. # Note that this schema.rb definition is the authoritative source for your
  7. # database schema. If you need to create the application database on another
  8. # system, you should be using db:schema:load, not running all the migrations
  9. # from scratch. The latter is a flawed and unsustainable approach (the more migrations
  10. # you'll amass, the slower it'll run and the greater likelihood for issues).
  11. #
  12. # It's strongly recommended that you check this file into your version control system.
  13. ActiveRecord::Schema.define(version: 20140605032822) do
  14. create_table "agent_logs", force: true do |t|
  15. t.integer "agent_id", null: false
  16. t.text "message", limit: 16777215, null: false
  17. t.integer "level", default: 3, null: false
  18. t.integer "inbound_event_id"
  19. t.integer "outbound_event_id"
  20. t.datetime "created_at", null: false
  21. t.datetime "updated_at", null: false
  22. end
  23. create_table "agents", force: true do |t|
  24. t.integer "user_id"
  25. t.text "options", limit: 16777215
  26. t.string "type"
  27. t.string "name"
  28. t.string "schedule"
  29. t.integer "events_count"
  30. t.datetime "last_check_at"
  31. t.datetime "last_receive_at"
  32. t.integer "last_checked_event_id"
  33. t.datetime "created_at", null: false
  34. t.datetime "updated_at", null: false
  35. t.text "memory", limit: 2147483647
  36. t.datetime "last_web_request_at"
  37. t.datetime "last_event_at"
  38. t.datetime "last_error_log_at"
  39. t.integer "keep_events_for", default: 0, null: false
  40. t.boolean "propagate_immediately", default: false, null: false
  41. t.boolean "disabled", default: false, null: false
  42. t.string "guid", null: false
  43. end
  44. add_index "agents", ["guid"], name: "index_agents_on_guid", using: :btree
  45. add_index "agents", ["schedule"], name: "index_agents_on_schedule", using: :btree
  46. add_index "agents", ["type"], name: "index_agents_on_type", using: :btree
  47. add_index "agents", ["user_id", "created_at"], name: "index_agents_on_user_id_and_created_at", using: :btree
  48. create_table "delayed_jobs", force: true do |t|
  49. t.integer "priority", default: 0
  50. t.integer "attempts", default: 0
  51. t.text "handler", limit: 16777215
  52. t.text "last_error", limit: 16777215
  53. t.datetime "run_at"
  54. t.datetime "locked_at"
  55. t.datetime "failed_at"
  56. t.string "locked_by"
  57. t.string "queue"
  58. t.datetime "created_at", null: false
  59. t.datetime "updated_at", null: false
  60. end
  61. add_index "delayed_jobs", ["priority", "run_at"], name: "delayed_jobs_priority", using: :btree
  62. create_table "events", force: true do |t|
  63. t.integer "user_id"
  64. t.integer "agent_id"
  65. t.decimal "lat", precision: 15, scale: 10
  66. t.decimal "lng", precision: 15, scale: 10
  67. t.text "payload", limit: 2147483647
  68. t.datetime "created_at", null: false
  69. t.datetime "updated_at", null: false
  70. t.datetime "expires_at"
  71. end
  72. add_index "events", ["agent_id", "created_at"], name: "index_events_on_agent_id_and_created_at", using: :btree
  73. add_index "events", ["expires_at"], name: "index_events_on_expires_at", using: :btree
  74. add_index "events", ["user_id", "created_at"], name: "index_events_on_user_id_and_created_at", using: :btree
  75. create_table "links", force: true do |t|
  76. t.integer "source_id"
  77. t.integer "receiver_id"
  78. t.datetime "created_at", null: false
  79. t.datetime "updated_at", null: false
  80. t.integer "event_id_at_creation", default: 0, null: false
  81. end
  82. add_index "links", ["receiver_id", "source_id"], name: "index_links_on_receiver_id_and_source_id", using: :btree
  83. add_index "links", ["source_id", "receiver_id"], name: "index_links_on_source_id_and_receiver_id", using: :btree
  84. create_table "scenario_memberships", force: true do |t|
  85. t.integer "agent_id", null: false
  86. t.integer "scenario_id", null: false
  87. t.datetime "created_at"
  88. t.datetime "updated_at"
  89. end
  90. add_index "scenario_memberships", ["agent_id"], name: "index_scenario_memberships_on_agent_id", using: :btree
  91. add_index "scenario_memberships", ["scenario_id"], name: "index_scenario_memberships_on_scenario_id", using: :btree
  92. create_table "scenarios", force: true do |t|
  93. t.string "name", null: false
  94. t.integer "user_id", null: false
  95. t.datetime "created_at"
  96. t.datetime "updated_at"
  97. t.text "description"
  98. t.boolean "public", default: false, null: false
  99. t.string "guid", null: false
  100. t.string "source_url"
  101. end
  102. add_index "scenarios", ["user_id", "guid"], name: "index_scenarios_on_user_id_and_guid", unique: true, using: :btree
  103. create_table "user_credentials", force: true do |t|
  104. t.integer "user_id", null: false
  105. t.string "credential_name", null: false
  106. t.text "credential_value", null: false
  107. t.datetime "created_at", null: false
  108. t.datetime "updated_at", null: false
  109. t.string "mode", default: "text", null: false
  110. end
  111. add_index "user_credentials", ["user_id", "credential_name"], name: "index_user_credentials_on_user_id_and_credential_name", unique: true, using: :btree
  112. create_table "users", force: true do |t|
  113. t.string "email", default: "", null: false
  114. t.string "encrypted_password", default: "", null: false
  115. t.string "reset_password_token"
  116. t.datetime "reset_password_sent_at"
  117. t.datetime "remember_created_at"
  118. t.integer "sign_in_count", default: 0
  119. t.datetime "current_sign_in_at"
  120. t.datetime "last_sign_in_at"
  121. t.string "current_sign_in_ip"
  122. t.string "last_sign_in_ip"
  123. t.datetime "created_at", null: false
  124. t.datetime "updated_at", null: false
  125. t.boolean "admin", default: false, null: false
  126. t.integer "failed_attempts", default: 0
  127. t.string "unlock_token"
  128. t.datetime "locked_at"
  129. t.string "username", null: false
  130. t.string "invitation_code", null: false
  131. t.integer "scenario_count", default: 0, null: false
  132. end
  133. add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
  134. add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
  135. add_index "users", ["unlock_token"], name: "index_users_on_unlock_token", unique: true, using: :btree
  136. add_index "users", ["username"], name: "index_users_on_username", unique: true, using: :btree
  137. end