schema.rb 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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: 20140820003139) do
  14. # These are extensions that must be enabled in order to support this database
  15. enable_extension "plpgsql"
  16. create_table "agent_logs", force: true do |t|
  17. t.integer "agent_id", null: false
  18. t.text "message", limit: 16777215, null: false, charset: "utf8mb4", collation: "utf8mb4_bin"
  19. t.integer "level", default: 3, null: false
  20. t.integer "inbound_event_id"
  21. t.integer "outbound_event_id"
  22. t.datetime "created_at"
  23. t.datetime "updated_at"
  24. end
  25. create_table "agents", force: true do |t|
  26. t.integer "user_id"
  27. t.text "options", limit: 16777215, charset: "utf8mb4", collation: "utf8mb4_bin"
  28. t.string "type", collation: "utf8_bin"
  29. t.string "name", charset: "utf8mb4", collation: "utf8mb4_bin"
  30. t.string "schedule", collation: "utf8_bin"
  31. t.integer "events_count"
  32. t.datetime "last_check_at"
  33. t.datetime "last_receive_at"
  34. t.integer "last_checked_event_id"
  35. t.datetime "created_at", null: false
  36. t.datetime "updated_at", null: false
  37. t.text "memory", limit: 2147483647, charset: "utf8mb4", collation: "utf8mb4_bin"
  38. t.datetime "last_web_request_at"
  39. t.integer "keep_events_for", default: 0, null: false
  40. t.datetime "last_event_at"
  41. t.datetime "last_error_log_at"
  42. t.boolean "propagate_immediately", default: false, null: false
  43. t.boolean "disabled", default: false, null: false
  44. t.string "guid", null: false, charset: "ascii", collation: "ascii_bin"
  45. t.integer "service_id"
  46. end
  47. add_index "agents", ["guid"], name: "index_agents_on_guid", using: :btree
  48. add_index "agents", ["schedule"], name: "index_agents_on_schedule", using: :btree
  49. add_index "agents", ["type"], name: "index_agents_on_type", using: :btree
  50. add_index "agents", ["user_id", "created_at"], name: "index_agents_on_user_id_and_created_at", using: :btree
  51. create_table "delayed_jobs", force: true do |t|
  52. t.integer "priority", default: 0
  53. t.integer "attempts", default: 0
  54. t.text "handler", limit: 16777215, charset: "utf8mb4", collation: "utf8mb4_bin"
  55. t.text "last_error", limit: 16777215, charset: "utf8mb4", collation: "utf8mb4_bin"
  56. t.datetime "run_at"
  57. t.datetime "locked_at"
  58. t.datetime "failed_at"
  59. t.string "locked_by"
  60. t.string "queue"
  61. t.datetime "created_at"
  62. t.datetime "updated_at"
  63. end
  64. add_index "delayed_jobs", ["priority", "run_at"], name: "delayed_jobs_priority", using: :btree
  65. create_table "events", force: true do |t|
  66. t.integer "user_id"
  67. t.integer "agent_id"
  68. t.decimal "lat", precision: 15, scale: 10
  69. t.decimal "lng", precision: 15, scale: 10
  70. t.text "payload", limit: 2147483647, charset: "utf8mb4", collation: "utf8mb4_bin"
  71. t.datetime "created_at", null: false
  72. t.datetime "updated_at", null: false
  73. t.datetime "expires_at"
  74. end
  75. add_index "events", ["agent_id", "created_at"], name: "index_events_on_agent_id_and_created_at", using: :btree
  76. add_index "events", ["expires_at"], name: "index_events_on_expires_at", using: :btree
  77. add_index "events", ["user_id", "created_at"], name: "index_events_on_user_id_and_created_at", using: :btree
  78. create_table "links", force: true do |t|
  79. t.integer "source_id"
  80. t.integer "receiver_id"
  81. t.datetime "created_at"
  82. t.datetime "updated_at"
  83. t.integer "event_id_at_creation", default: 0, null: false
  84. end
  85. add_index "links", ["receiver_id", "source_id"], name: "index_links_on_receiver_id_and_source_id", using: :btree
  86. add_index "links", ["source_id", "receiver_id"], name: "index_links_on_source_id_and_receiver_id", using: :btree
  87. create_table "scenario_memberships", force: true do |t|
  88. t.integer "agent_id", null: false
  89. t.integer "scenario_id", null: false
  90. t.datetime "created_at"
  91. t.datetime "updated_at"
  92. end
  93. add_index "scenario_memberships", ["agent_id"], name: "index_scenario_memberships_on_agent_id", using: :btree
  94. add_index "scenario_memberships", ["scenario_id"], name: "index_scenario_memberships_on_scenario_id", using: :btree
  95. create_table "scenarios", force: true do |t|
  96. t.string "name", null: false, charset: "utf8mb4", collation: "utf8mb4_bin"
  97. t.integer "user_id", null: false
  98. t.datetime "created_at"
  99. t.datetime "updated_at"
  100. t.text "description", charset: "utf8mb4", collation: "utf8mb4_bin"
  101. t.boolean "public", default: false, null: false
  102. t.string "guid", null: false, charset: "ascii", collation: "ascii_bin"
  103. t.string "source_url"
  104. t.string "tag_bg_color"
  105. t.string "tag_fg_color"
  106. end
  107. add_index "scenarios", ["user_id", "guid"], name: "index_scenarios_on_user_id_and_guid", unique: true, using: :btree
  108. create_table "services", force: true do |t|
  109. t.integer "user_id", null: false
  110. t.string "provider", null: false
  111. t.string "name", null: false
  112. t.text "token", null: false
  113. t.text "secret"
  114. t.text "refresh_token"
  115. t.datetime "expires_at"
  116. t.boolean "global", default: false
  117. t.text "options"
  118. t.datetime "created_at"
  119. t.datetime "updated_at"
  120. t.string "uid"
  121. end
  122. add_index "services", ["provider"], name: "index_services_on_provider", using: :btree
  123. add_index "services", ["uid"], name: "index_services_on_uid", using: :btree
  124. add_index "services", ["user_id", "global"], name: "index_services_on_user_id_and_global", using: :btree
  125. create_table "user_credentials", force: true do |t|
  126. t.integer "user_id", null: false
  127. t.string "credential_name", null: false
  128. t.text "credential_value", null: false
  129. t.datetime "created_at", null: false
  130. t.datetime "updated_at", null: false
  131. t.string "mode", default: "text", null: false, collation: "utf8_bin"
  132. end
  133. add_index "user_credentials", ["user_id", "credential_name"], name: "index_user_credentials_on_user_id_and_credential_name", unique: true, using: :btree
  134. create_table "users", force: true do |t|
  135. t.string "email", default: "", null: false, collation: "utf8_bin"
  136. t.string "encrypted_password", default: "", null: false, charset: "ascii", collation: "ascii_bin"
  137. t.string "reset_password_token", collation: "utf8_bin"
  138. t.datetime "reset_password_sent_at"
  139. t.datetime "remember_created_at"
  140. t.integer "sign_in_count", default: 0
  141. t.datetime "current_sign_in_at"
  142. t.datetime "last_sign_in_at"
  143. t.string "current_sign_in_ip"
  144. t.string "last_sign_in_ip"
  145. t.datetime "created_at", null: false
  146. t.datetime "updated_at", null: false
  147. t.boolean "admin", default: false, null: false
  148. t.integer "failed_attempts", default: 0
  149. t.string "unlock_token"
  150. t.datetime "locked_at"
  151. t.string "username", limit: 191, null: false, charset: "utf8mb4", collation: "utf8mb4_unicode_ci"
  152. t.string "invitation_code", null: false, collation: "utf8_bin"
  153. t.integer "scenario_count", default: 0, null: false
  154. end
  155. add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
  156. add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
  157. add_index "users", ["unlock_token"], name: "index_users_on_unlock_token", unique: true, using: :btree
  158. add_index "users", ["username"], name: "index_users_on_username", unique: true, using: :btree
  159. end