20120101000010_create_ticket.rb 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. # Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
  2. class CreateTicket < ActiveRecord::Migration[4.2]
  3. def up
  4. create_table :ticket_state_types do |t|
  5. t.column :name, :string, limit: 250, null: false
  6. t.column :note, :string, limit: 250, null: true
  7. t.column :updated_by_id, :integer, null: false
  8. t.column :created_by_id, :integer, null: false
  9. t.timestamps limit: 3, null: false
  10. end
  11. add_index :ticket_state_types, [:name], unique: true
  12. add_foreign_key :ticket_state_types, :users, column: :created_by_id
  13. add_foreign_key :ticket_state_types, :users, column: :updated_by_id
  14. create_table :ticket_states do |t|
  15. t.references :state_type, null: false
  16. t.column :name, :string, limit: 250, null: false
  17. t.column :next_state_id, :integer, null: true
  18. t.column :ignore_escalation, :boolean, null: false, default: false
  19. t.column :default_create, :boolean, null: false, default: false
  20. t.column :default_follow_up, :boolean, null: false, default: false
  21. t.column :note, :string, limit: 250, null: true
  22. t.column :active, :boolean, null: false, default: true
  23. t.column :updated_by_id, :integer, null: false
  24. t.column :created_by_id, :integer, null: false
  25. t.timestamps limit: 3, null: false
  26. end
  27. add_index :ticket_states, [:name], unique: true
  28. add_index :ticket_states, [:default_create]
  29. add_index :ticket_states, [:default_follow_up]
  30. add_foreign_key :ticket_states, :ticket_state_types, column: :state_type_id
  31. add_foreign_key :ticket_states, :users, column: :created_by_id
  32. add_foreign_key :ticket_states, :users, column: :updated_by_id
  33. create_table :ticket_priorities do |t|
  34. t.column :name, :string, limit: 250, null: false
  35. t.column :default_create, :boolean, null: false, default: false
  36. t.column :ui_icon, :string, limit: 100, null: true
  37. t.column :ui_color, :string, limit: 100, null: true
  38. t.column :note, :string, limit: 250, null: true
  39. t.column :active, :boolean, null: false, default: true
  40. t.column :updated_by_id, :integer, null: false
  41. t.column :created_by_id, :integer, null: false
  42. t.timestamps limit: 3, null: false
  43. end
  44. add_index :ticket_priorities, [:name], unique: true
  45. add_index :ticket_priorities, [:default_create]
  46. add_foreign_key :ticket_priorities, :users, column: :created_by_id
  47. add_foreign_key :ticket_priorities, :users, column: :updated_by_id
  48. create_table :tickets do |t|
  49. t.references :group, null: false
  50. t.references :priority, null: false
  51. t.references :state, null: false
  52. t.references :organization, null: true
  53. t.column :number, :string, limit: 60, null: false
  54. t.column :title, :string, limit: 250, null: false
  55. t.column :owner_id, :integer, null: false
  56. t.column :customer_id, :integer, null: false
  57. t.column :note, :string, limit: 250, null: true
  58. t.column :first_response_at, :timestamp, limit: 3, null: true
  59. t.column :first_response_escalation_at, :timestamp, limit: 3, null: true
  60. t.column :first_response_in_min, :integer, null: true
  61. t.column :first_response_diff_in_min, :integer, null: true
  62. t.column :close_at, :timestamp, limit: 3, null: true
  63. t.column :close_escalation_at, :timestamp, limit: 3, null: true
  64. t.column :close_in_min, :integer, null: true
  65. t.column :close_diff_in_min, :integer, null: true
  66. t.column :update_escalation_at, :timestamp, limit: 3, null: true
  67. t.column :update_in_min, :integer, null: true
  68. t.column :update_diff_in_min, :integer, null: true
  69. t.column :last_contact_at, :timestamp, limit: 3, null: true
  70. t.column :last_contact_agent_at, :timestamp, limit: 3, null: true
  71. t.column :last_contact_customer_at, :timestamp, limit: 3, null: true
  72. t.column :last_owner_update_at, :timestamp, limit: 3, null: true
  73. t.column :create_article_type_id, :integer, null: true
  74. t.column :create_article_sender_id, :integer, null: true
  75. t.column :article_count, :integer, null: true
  76. t.column :escalation_at, :timestamp, limit: 3, null: true
  77. t.column :pending_time, :timestamp, limit: 3, null: true
  78. t.column :type, :string, limit: 100, null: true
  79. t.column :time_unit, :decimal, precision: 6, scale: 2, null: true
  80. t.column :preferences, :text, limit: 500.kilobytes + 1, null: true
  81. t.column :updated_by_id, :integer, null: false
  82. t.column :created_by_id, :integer, null: false
  83. t.timestamps limit: 3, null: false
  84. end
  85. add_index :tickets, [:state_id]
  86. add_index :tickets, [:priority_id]
  87. add_index :tickets, [:group_id]
  88. add_index :tickets, [:owner_id]
  89. add_index :tickets, [:customer_id]
  90. add_index :tickets, %i[customer_id state_id created_at]
  91. add_index :tickets, [:number], unique: true
  92. add_index :tickets, [:title]
  93. add_index :tickets, [:created_at]
  94. add_index :tickets, [:updated_at]
  95. add_index :tickets, [:first_response_at]
  96. add_index :tickets, [:first_response_escalation_at]
  97. add_index :tickets, [:first_response_in_min]
  98. add_index :tickets, [:first_response_diff_in_min]
  99. add_index :tickets, [:close_at]
  100. add_index :tickets, [:close_escalation_at]
  101. add_index :tickets, [:close_in_min]
  102. add_index :tickets, [:close_diff_in_min]
  103. add_index :tickets, [:escalation_at]
  104. add_index :tickets, [:update_in_min]
  105. add_index :tickets, [:update_diff_in_min]
  106. add_index :tickets, [:last_contact_at]
  107. add_index :tickets, [:last_contact_agent_at]
  108. add_index :tickets, [:last_contact_customer_at]
  109. add_index :tickets, [:last_owner_update_at]
  110. add_index :tickets, [:create_article_type_id]
  111. add_index :tickets, [:create_article_sender_id]
  112. add_index :tickets, [:created_by_id]
  113. add_index :tickets, [:pending_time]
  114. add_index :tickets, [:type]
  115. add_index :tickets, [:time_unit]
  116. add_index :tickets, %i[group_id state_id]
  117. add_index :tickets, %i[group_id state_id owner_id]
  118. add_index :tickets, %i[group_id state_id updated_at]
  119. add_index :tickets, %i[group_id state_id owner_id updated_at], name: 'index_tickets_on_group_id_state_id_owner_id_updated_at'
  120. add_index :tickets, %i[group_id state_id created_at]
  121. add_index :tickets, %i[group_id state_id owner_id created_at], name: 'index_tickets_on_group_id_state_id_owner_id_created_at'
  122. add_index :tickets, %i[group_id state_id close_at]
  123. add_index :tickets, %i[group_id state_id owner_id close_at], name: 'index_tickets_on_group_id_state_id_owner_id_close_at'
  124. add_foreign_key :tickets, :groups
  125. add_foreign_key :tickets, :users, column: :owner_id
  126. add_foreign_key :tickets, :users, column: :customer_id
  127. add_foreign_key :tickets, :ticket_priorities, column: :priority_id
  128. add_foreign_key :tickets, :ticket_states, column: :state_id
  129. add_foreign_key :tickets, :organizations
  130. add_foreign_key :tickets, :users, column: :created_by_id
  131. add_foreign_key :tickets, :users, column: :updated_by_id
  132. create_table :ticket_flags do |t|
  133. t.references :ticket, null: false
  134. t.column :key, :string, limit: 50, null: false
  135. t.column :value, :string, limit: 50, null: true
  136. t.column :created_by_id, :integer, null: false
  137. t.timestamps limit: 3, null: false
  138. end
  139. add_index :ticket_flags, %i[ticket_id created_by_id]
  140. add_index :ticket_flags, %i[ticket_id key]
  141. add_index :ticket_flags, [:ticket_id]
  142. add_index :ticket_flags, [:created_by_id]
  143. add_foreign_key :ticket_flags, :tickets, column: :ticket_id
  144. add_foreign_key :ticket_flags, :users, column: :created_by_id
  145. create_table :ticket_article_types do |t|
  146. t.column :name, :string, limit: 250, null: false
  147. t.column :note, :string, limit: 250, null: true
  148. t.column :communication, :boolean, null: false
  149. t.column :active, :boolean, null: false, default: true
  150. t.column :updated_by_id, :integer, null: false
  151. t.column :created_by_id, :integer, null: false
  152. t.timestamps limit: 3, null: false
  153. end
  154. add_index :ticket_article_types, [:name], unique: true
  155. add_foreign_key :ticket_article_types, :users, column: :created_by_id
  156. add_foreign_key :ticket_article_types, :users, column: :updated_by_id
  157. create_table :ticket_article_senders do |t|
  158. t.column :name, :string, limit: 250, null: false
  159. t.column :note, :string, limit: 250, null: true
  160. t.column :updated_by_id, :integer, null: false
  161. t.column :created_by_id, :integer, null: false
  162. t.timestamps limit: 3, null: false
  163. end
  164. add_index :ticket_article_senders, [:name], unique: true
  165. add_foreign_key :ticket_article_senders, :users, column: :created_by_id
  166. add_foreign_key :ticket_article_senders, :users, column: :updated_by_id
  167. create_table :ticket_articles do |t|
  168. t.references :ticket, null: false
  169. t.references :type, null: false
  170. t.references :sender, null: false
  171. t.column :from, :string, limit: 3000, null: true
  172. t.column :to, :string, limit: 3000, null: true
  173. t.column :cc, :string, limit: 3000, null: true
  174. t.column :subject, :string, limit: 3000, null: true
  175. t.column :reply_to, :string, limit: 300, null: true
  176. t.column :message_id, :string, limit: 3000, null: true
  177. t.column :message_id_md5, :string, limit: 32, null: true
  178. t.column :in_reply_to, :string, limit: 3000, null: true
  179. t.column :content_type, :string, limit: 20, null: false, default: 'text/plain'
  180. t.column :references, :string, limit: 3200, null: true
  181. t.column :body, :text, limit: 20.megabytes + 1, null: false
  182. t.column :internal, :boolean, null: false, default: false
  183. t.column :preferences, :text, limit: 500.kilobytes + 1, null: true
  184. t.column :updated_by_id, :integer, null: false
  185. t.column :created_by_id, :integer, null: false
  186. t.column :origin_by_id, :integer
  187. t.timestamps limit: 3, null: false
  188. end
  189. add_index :ticket_articles, [:ticket_id]
  190. add_index :ticket_articles, [:message_id_md5]
  191. add_index :ticket_articles, %i[message_id_md5 type_id], name: 'index_ticket_articles_message_id_md5_type_id'
  192. add_index :ticket_articles, [:created_by_id]
  193. add_index :ticket_articles, [:created_at]
  194. add_index :ticket_articles, [:internal]
  195. add_index :ticket_articles, [:type_id]
  196. add_index :ticket_articles, [:sender_id]
  197. add_foreign_key :ticket_articles, :tickets
  198. add_foreign_key :ticket_articles, :ticket_article_types, column: :type_id
  199. add_foreign_key :ticket_articles, :ticket_article_senders, column: :sender_id
  200. add_foreign_key :ticket_articles, :users, column: :created_by_id
  201. add_foreign_key :ticket_articles, :users, column: :updated_by_id
  202. add_foreign_key :ticket_articles, :users, column: :origin_by_id
  203. create_table :ticket_article_flags do |t|
  204. t.references :ticket_article, null: false
  205. t.column :key, :string, limit: 50, null: false
  206. t.column :value, :string, limit: 50, null: true
  207. t.column :created_by_id, :integer, null: false
  208. t.timestamps limit: 3, null: false
  209. end
  210. add_index :ticket_article_flags, %i[ticket_article_id created_by_id], name: 'index_ticket_article_flags_on_articles_id_and_created_by_id'
  211. add_index :ticket_article_flags, %i[ticket_article_id key]
  212. add_index :ticket_article_flags, [:ticket_article_id]
  213. add_index :ticket_article_flags, [:created_by_id]
  214. add_foreign_key :ticket_article_flags, :ticket_articles, column: :ticket_article_id
  215. add_foreign_key :ticket_article_flags, :users, column: :created_by_id
  216. create_table :ticket_time_accountings do |t|
  217. t.references :ticket, null: false
  218. t.references :ticket_article, null: true
  219. t.column :time_unit, :decimal, precision: 6, scale: 2, null: false
  220. t.column :created_by_id, :integer, null: false
  221. t.timestamps limit: 3, null: false
  222. end
  223. add_index :ticket_time_accountings, [:ticket_id]
  224. add_index :ticket_time_accountings, [:ticket_article_id]
  225. add_index :ticket_time_accountings, [:created_by_id]
  226. add_index :ticket_time_accountings, [:time_unit]
  227. add_foreign_key :ticket_time_accountings, :tickets
  228. add_foreign_key :ticket_time_accountings, :ticket_articles
  229. add_foreign_key :ticket_time_accountings, :users, column: :created_by_id
  230. create_table :ticket_counters do |t|
  231. t.column :content, :string, limit: 100, null: false
  232. t.column :generator, :string, limit: 100, null: false
  233. end
  234. add_index :ticket_counters, [:generator], unique: true
  235. create_table :overviews do |t|
  236. t.column :name, :string, limit: 250, null: false
  237. t.column :link, :string, limit: 250, null: false
  238. t.column :prio, :integer, null: false
  239. t.column :condition, :text, limit: 500.kilobytes + 1, null: false
  240. t.column :order, :string, limit: 2500, null: false
  241. t.column :group_by, :string, limit: 250, null: true
  242. t.column :group_direction, :string, limit: 250, null: true
  243. t.column :organization_shared, :boolean, null: false, default: false
  244. t.column :out_of_office, :boolean, null: false, default: false
  245. t.column :view, :string, limit: 1000, null: false
  246. t.column :active, :boolean, null: false, default: true
  247. t.column :updated_by_id, :integer, null: false
  248. t.column :created_by_id, :integer, null: false
  249. t.timestamps limit: 3, null: false
  250. end
  251. add_index :overviews, [:name]
  252. add_foreign_key :overviews, :users, column: :created_by_id
  253. add_foreign_key :overviews, :users, column: :updated_by_id
  254. create_table :overviews_roles, id: false do |t|
  255. t.references :overview
  256. t.references :role
  257. end
  258. add_index :overviews_roles, [:overview_id]
  259. add_index :overviews_roles, [:role_id]
  260. add_foreign_key :overviews_roles, :overviews
  261. add_foreign_key :overviews_roles, :roles
  262. create_table :overviews_users, id: false do |t|
  263. t.references :overview
  264. t.references :user
  265. end
  266. add_index :overviews_users, [:overview_id]
  267. add_index :overviews_users, [:user_id]
  268. add_foreign_key :overviews_users, :overviews
  269. add_foreign_key :overviews_users, :users
  270. create_table :overviews_groups, id: false do |t|
  271. t.references :overview
  272. t.references :group
  273. end
  274. add_index :overviews_groups, [:overview_id]
  275. add_index :overviews_groups, [:group_id]
  276. add_foreign_key :overviews_groups, :overviews
  277. add_foreign_key :overviews_groups, :groups
  278. create_table :triggers do |t|
  279. t.column :name, :string, limit: 250, null: false
  280. t.column :condition, :text, limit: 500.kilobytes + 1, null: false
  281. t.column :perform, :text, limit: 500.kilobytes + 1, null: false
  282. t.column :disable_notification, :boolean, null: false, default: true
  283. t.column :note, :string, limit: 250, null: true
  284. t.column :active, :boolean, null: false, default: true
  285. t.column :updated_by_id, :integer, null: false
  286. t.column :created_by_id, :integer, null: false
  287. t.timestamps limit: 3, null: false
  288. end
  289. add_index :triggers, [:name], unique: true
  290. add_foreign_key :triggers, :users, column: :created_by_id
  291. add_foreign_key :triggers, :users, column: :updated_by_id
  292. create_table :jobs do |t|
  293. t.column :name, :string, limit: 250, null: false
  294. t.column :timeplan, :string, limit: 2500, null: false
  295. t.column :condition, :text, limit: 500.kilobytes + 1, null: false
  296. t.column :perform, :text, limit: 500.kilobytes + 1, null: false
  297. t.column :disable_notification, :boolean, null: false, default: true
  298. t.column :last_run_at, :timestamp, limit: 3, null: true
  299. t.column :next_run_at, :timestamp, limit: 3, null: true
  300. t.column :running, :boolean, null: false, default: false
  301. t.column :processed, :integer, null: false, default: 0
  302. t.column :matching, :integer, null: false
  303. t.column :pid, :string, limit: 250, null: true
  304. t.column :note, :string, limit: 250, null: true
  305. t.column :active, :boolean, null: false, default: false
  306. t.column :updated_by_id, :integer, null: false
  307. t.column :created_by_id, :integer, null: false
  308. t.timestamps limit: 3, null: false
  309. end
  310. add_index :jobs, [:name], unique: true
  311. add_foreign_key :jobs, :users, column: :created_by_id
  312. add_foreign_key :jobs, :users, column: :updated_by_id
  313. create_table :notifications do |t|
  314. t.column :subject, :string, limit: 250, null: false
  315. t.column :body, :string, limit: 8000, null: false
  316. t.column :content_type, :string, limit: 250, null: false
  317. t.column :active, :boolean, null: false, default: true
  318. t.column :note, :string, limit: 250, null: true
  319. t.timestamps limit: 3, null: false
  320. end
  321. create_table :link_types do |t|
  322. t.column :name, :string, limit: 250, null: false
  323. t.column :note, :string, limit: 250, null: true
  324. t.column :active, :boolean, null: false, default: true
  325. t.timestamps limit: 3, null: false
  326. end
  327. add_index :link_types, [:name], unique: true
  328. create_table :link_objects do |t|
  329. t.column :name, :string, limit: 250, null: false
  330. t.column :note, :string, limit: 250, null: true
  331. t.column :active, :boolean, null: false, default: true
  332. t.timestamps limit: 3, null: false
  333. end
  334. add_index :link_objects, [:name], unique: true
  335. create_table :links do |t|
  336. t.references :link_type, null: false
  337. t.column :link_object_source_id, :integer, null: false
  338. t.column :link_object_source_value, :integer, null: false
  339. t.column :link_object_target_id, :integer, null: false
  340. t.column :link_object_target_value, :integer, null: false
  341. t.timestamps limit: 3, null: false
  342. end
  343. add_index :links, %i[link_object_source_id link_object_source_value link_object_target_id link_object_target_value link_type_id], unique: true, name: 'links_uniq_total'
  344. add_foreign_key :links, :link_types
  345. create_table :postmaster_filters do |t|
  346. t.column :name, :string, limit: 250, null: false
  347. t.column :channel, :string, limit: 250, null: false
  348. t.column :match, :text, limit: 500.kilobytes + 1, null: false
  349. t.column :perform, :text, limit: 500.kilobytes + 1, null: false
  350. t.column :active, :boolean, null: false, default: true
  351. t.column :note, :string, limit: 250, null: true
  352. t.column :updated_by_id, :integer, null: false
  353. t.column :created_by_id, :integer, null: false
  354. t.timestamps limit: 3, null: false
  355. end
  356. add_index :postmaster_filters, [:channel]
  357. add_foreign_key :postmaster_filters, :users, column: :created_by_id
  358. add_foreign_key :postmaster_filters, :users, column: :updated_by_id
  359. create_table :text_modules do |t|
  360. t.column :name, :string, limit: 250, null: false
  361. t.column :keywords, :string, limit: 500, null: true
  362. t.column :content, :text, limit: 10.megabytes + 1, null: false
  363. t.column :note, :string, limit: 250, null: true
  364. t.column :active, :boolean, null: false, default: true
  365. t.column :updated_by_id, :integer, null: false
  366. t.column :created_by_id, :integer, null: false
  367. t.timestamps limit: 3, null: false
  368. end
  369. add_index :text_modules, [:name]
  370. add_foreign_key :text_modules, :users, column: :created_by_id
  371. add_foreign_key :text_modules, :users, column: :updated_by_id
  372. create_table :text_modules_groups, id: false do |t|
  373. t.references :text_module
  374. t.references :group
  375. end
  376. add_index :text_modules_groups, [:text_module_id]
  377. add_index :text_modules_groups, [:group_id]
  378. add_foreign_key :text_modules_groups, :text_modules
  379. add_foreign_key :text_modules_groups, :groups
  380. create_table :templates do |t|
  381. t.column :name, :string, limit: 250, null: false
  382. t.column :options, :text, limit: 10.megabytes + 1, null: false
  383. t.column :updated_by_id, :integer, null: false
  384. t.column :created_by_id, :integer, null: false
  385. t.timestamps limit: 3, null: false
  386. end
  387. add_index :templates, [:name]
  388. add_foreign_key :templates, :users, column: :created_by_id
  389. add_foreign_key :templates, :users, column: :updated_by_id
  390. create_table :templates_groups, id: false do |t|
  391. t.references :template
  392. t.references :group
  393. end
  394. add_index :templates_groups, [:template_id]
  395. add_index :templates_groups, [:group_id]
  396. add_foreign_key :templates_groups, :templates
  397. add_foreign_key :templates_groups, :groups
  398. create_table :channels do |t|
  399. t.references :group, null: true
  400. t.column :area, :string, limit: 100, null: false
  401. t.column :options, :text, limit: 500.kilobytes + 1, null: true
  402. t.column :active, :boolean, null: false, default: true
  403. t.column :preferences, :string, limit: 2000, null: true
  404. t.column :last_log_in, :text, limit: 500.kilobytes + 1, null: true
  405. t.column :last_log_out, :text, limit: 500.kilobytes + 1, null: true
  406. t.column :status_in, :string, limit: 100, null: true
  407. t.column :status_out, :string, limit: 100, null: true
  408. t.column :updated_by_id, :integer, null: false
  409. t.column :created_by_id, :integer, null: false
  410. t.timestamps limit: 3, null: false
  411. end
  412. add_index :channels, [:area]
  413. add_foreign_key :channels, :groups
  414. add_foreign_key :channels, :users, column: :created_by_id
  415. add_foreign_key :channels, :users, column: :updated_by_id
  416. create_table :slas do |t|
  417. t.references :calendar, null: false
  418. t.column :name, :string, limit: 150, null: true
  419. t.column :first_response_time, :integer, null: true
  420. t.column :response_time, :integer, null: true
  421. t.column :update_time, :integer, null: true
  422. t.column :solution_time, :integer, null: true
  423. t.column :condition, :text, limit: 500.kilobytes + 1, null: true
  424. t.column :updated_by_id, :integer, null: false
  425. t.column :created_by_id, :integer, null: false
  426. t.timestamps limit: 3, null: false
  427. end
  428. add_index :slas, [:name], unique: true
  429. add_foreign_key :slas, :users, column: :created_by_id
  430. add_foreign_key :slas, :users, column: :updated_by_id
  431. create_table :macros do |t|
  432. t.string :name, limit: 250, null: true
  433. t.text :perform, limit: 500.kilobytes + 1, null: false
  434. t.boolean :active, null: false, default: true
  435. t.string :ux_flow_next_up, null: false, default: 'none'
  436. t.string :note, limit: 250, null: true
  437. t.integer :updated_by_id, null: false
  438. t.integer :created_by_id, null: false
  439. t.timestamps limit: 3, null: false
  440. end
  441. add_index :macros, [:name], unique: true
  442. add_foreign_key :macros, :users, column: :created_by_id
  443. add_foreign_key :macros, :users, column: :updated_by_id
  444. create_table :chats do |t|
  445. t.string :name, limit: 250, null: true
  446. t.integer :max_queue, null: false, default: 5
  447. t.string :note, limit: 250, null: true
  448. t.boolean :active, null: false, default: true
  449. t.boolean :public, null: false, default: false
  450. t.string :block_ip, limit: 5000, null: true
  451. t.string :block_country, limit: 5000, null: true
  452. t.string :allowed_websites, limit: 5000, null: true
  453. t.string :preferences, limit: 5000, null: true
  454. t.integer :updated_by_id, null: false
  455. t.integer :created_by_id, null: false
  456. t.timestamps limit: 3, null: false
  457. end
  458. add_index :chats, [:name], unique: true
  459. add_foreign_key :chats, :users, column: :created_by_id
  460. add_foreign_key :chats, :users, column: :updated_by_id
  461. create_table :chat_sessions do |t|
  462. t.references :chat, null: false
  463. t.string :session_id, null: false
  464. t.string :name, limit: 250, null: true
  465. t.string :state, limit: 50, null: false, default: 'waiting' # running, closed
  466. t.references :user, null: true
  467. t.text :preferences, limit: 100.kilobytes + 1, null: true
  468. t.integer :updated_by_id, null: true
  469. t.integer :created_by_id, null: true
  470. t.timestamps limit: 3, null: false
  471. end
  472. add_index :chat_sessions, [:session_id]
  473. add_index :chat_sessions, [:state]
  474. add_index :chat_sessions, [:user_id]
  475. add_index :chat_sessions, [:chat_id]
  476. add_foreign_key :chat_sessions, :chats
  477. add_foreign_key :chat_sessions, :users
  478. add_foreign_key :chat_sessions, :users, column: :created_by_id
  479. add_foreign_key :chat_sessions, :users, column: :updated_by_id
  480. create_table :chat_messages do |t|
  481. t.references :chat_session, null: false
  482. t.text :content, limit: 20.megabytes + 1, null: false
  483. t.integer :created_by_id, null: true
  484. t.timestamps limit: 3, null: false
  485. end
  486. add_index :chat_messages, [:chat_session_id]
  487. add_foreign_key :chat_messages, :chat_sessions
  488. add_foreign_key :chat_messages, :users, column: :created_by_id
  489. create_table :chat_agents do |t|
  490. t.boolean :active, null: false, default: true
  491. t.integer :concurrent, null: false, default: 5
  492. t.integer :updated_by_id, null: false
  493. t.integer :created_by_id, null: false
  494. t.timestamps limit: 3, null: false
  495. end
  496. add_index :chat_agents, [:active]
  497. add_index :chat_agents, [:updated_by_id], unique: true
  498. add_index :chat_agents, [:created_by_id], unique: true
  499. add_foreign_key :chat_agents, :users, column: :created_by_id
  500. add_foreign_key :chat_agents, :users, column: :updated_by_id
  501. create_table :report_profiles do |t|
  502. t.column :name, :string, limit: 150, null: true
  503. t.column :condition, :text, limit: 500.kilobytes + 1, null: true
  504. t.column :active, :boolean, null: false, default: true
  505. t.column :updated_by_id, :integer, null: false
  506. t.column :created_by_id, :integer, null: false
  507. t.timestamps limit: 3, null: false
  508. end
  509. add_index :report_profiles, [:name], unique: true
  510. add_foreign_key :report_profiles, :users, column: :created_by_id
  511. add_foreign_key :report_profiles, :users, column: :updated_by_id
  512. create_table :karma_users do |t|
  513. t.references :user, null: false
  514. t.integer :score, null: false
  515. t.string :level, limit: 200, null: false
  516. t.timestamps limit: 3, null: false
  517. end
  518. add_index :karma_users, [:user_id], unique: true
  519. add_foreign_key :karma_users, :users
  520. create_table :karma_activities do |t|
  521. t.string :name, limit: 200, null: false
  522. t.string :description, limit: 200, null: false
  523. t.integer :score, null: false
  524. t.integer :once_ttl, null: false
  525. t.timestamps limit: 3, null: false
  526. end
  527. add_index :karma_activities, [:name], unique: true
  528. create_table :karma_activity_logs do |t|
  529. t.integer :o_id, null: false
  530. t.integer :object_lookup_id, null: false
  531. t.references :user, null: false
  532. t.integer :activity_id, null: false
  533. t.integer :score, null: false
  534. t.integer :score_total, null: false
  535. t.timestamps limit: 3, null: false
  536. end
  537. add_index :karma_activity_logs, [:user_id]
  538. add_index :karma_activity_logs, [:created_at]
  539. add_index :karma_activity_logs, %i[o_id object_lookup_id]
  540. add_foreign_key :karma_activity_logs, :users
  541. add_foreign_key :karma_activity_logs, :karma_activities, column: :activity_id
  542. create_table :webhooks do |t|
  543. t.column :name, :string, limit: 250, null: false
  544. t.column :endpoint, :string, limit: 300, null: false
  545. t.column :signature_token, :string, limit: 200, null: true
  546. t.column :ssl_verify, :boolean, null: false, default: true
  547. t.column :note, :string, limit: 500, null: true
  548. t.column :active, :boolean, null: false, default: true
  549. t.column :updated_by_id, :integer, null: false
  550. t.column :created_by_id, :integer, null: false
  551. t.timestamps limit: 3, null: false
  552. end
  553. end
  554. def self.down
  555. drop_table :karma_activity_logs
  556. drop_table :karma_activities
  557. drop_table :karma_users
  558. drop_table :report_profiles
  559. drop_table :chat_sessions
  560. drop_table :chat_messages
  561. drop_table :chat_agents
  562. drop_table :chats
  563. drop_table :macros
  564. drop_table :slas
  565. drop_table :channels
  566. drop_table :templates_groups
  567. drop_table :templates
  568. drop_table :text_modules_groups
  569. drop_table :text_modules
  570. drop_table :postmaster_filters
  571. drop_table :notifications
  572. drop_table :triggers
  573. drop_table :links
  574. drop_table :link_types
  575. drop_table :link_objects
  576. drop_table :overviews
  577. drop_table :ticket_counters
  578. drop_table :ticket_time_accounting
  579. drop_table :ticket_article_flags
  580. drop_table :ticket_articles
  581. drop_table :ticket_article_types
  582. drop_table :ticket_article_senders
  583. drop_table :ticket_flags
  584. drop_table :tickets
  585. drop_table :ticket_priorities
  586. drop_table :ticket_states
  587. drop_table :ticket_state_types
  588. drop_table :webhooks
  589. end
  590. end