notee 0.4.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (246) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/notee/application.js +19539 -17294
  3. data/app/controllers/notee/application_controller.rb +5 -0
  4. data/app/controllers/notee/categories_controller.rb +7 -3
  5. data/app/controllers/notee/comments_controller.rb +9 -4
  6. data/app/controllers/notee/images_controller.rb +2 -2
  7. data/app/controllers/notee/posts_controller.rb +11 -4
  8. data/app/controllers/notee/roles_controller.rb +1 -1
  9. data/app/controllers/notee/tokens_controller.rb +9 -15
  10. data/app/controllers/notee/trashes_controller.rb +60 -0
  11. data/app/controllers/notee/users_controller.rb +26 -6
  12. data/app/models/notee/application_record.rb +27 -0
  13. data/app/models/notee/authority.rb +377 -0
  14. data/app/models/notee/category.rb +15 -2
  15. data/app/models/notee/comment.rb +6 -0
  16. data/app/models/notee/image.rb +2 -2
  17. data/app/models/notee/post.rb +7 -5
  18. data/app/models/notee/user.rb +97 -41
  19. data/app/views/layouts/notee/application.html.erb +3 -1
  20. data/config/routes.rb +19 -9
  21. data/db/migrate/20160605141437_create_notee_posts.rb +1 -0
  22. data/db/migrate/20160605141510_create_notee_categories.rb +4 -1
  23. data/db/migrate/20160605141547_create_notee_images.rb +4 -2
  24. data/db/migrate/20160803154954_create_notee_comments.rb +2 -1
  25. data/db/migrate/20160809145754_create_notee_users.rb +1 -0
  26. data/lib/notee/helpers/notee_helper.rb +65 -46
  27. data/lib/notee/helpers/view_helper.rb +10 -2
  28. data/lib/notee/status.rb +1 -2
  29. data/lib/notee/version.rb +1 -1
  30. data/lib/tasks/config/notee.rb +26 -0
  31. data/lib/tasks/config/schedule.rb +7 -0
  32. data/lib/tasks/controllers/notee_controller.rb +65 -0
  33. data/lib/tasks/javascripts/notee/highlight.pack.js +2 -0
  34. data/lib/tasks/notee_tasks.rake +105 -51
  35. data/lib/tasks/stylesheets/notee/highlight/agate.css +108 -0
  36. data/lib/tasks/stylesheets/notee/highlight/androidstudio.css +66 -0
  37. data/lib/tasks/stylesheets/notee/highlight/arduino-light.css +88 -0
  38. data/lib/tasks/stylesheets/notee/highlight/arta.css +73 -0
  39. data/lib/tasks/stylesheets/notee/highlight/ascetic.css +45 -0
  40. data/lib/tasks/stylesheets/notee/highlight/atelier-cave-dark.css +83 -0
  41. data/lib/tasks/stylesheets/notee/highlight/atelier-cave-light.css +85 -0
  42. data/lib/tasks/stylesheets/notee/highlight/atelier-dune-dark.css +69 -0
  43. data/lib/tasks/stylesheets/notee/highlight/atelier-dune-light.css +69 -0
  44. data/lib/tasks/stylesheets/notee/highlight/atelier-estuary-dark.css +84 -0
  45. data/lib/tasks/stylesheets/notee/highlight/atelier-estuary-light.css +84 -0
  46. data/lib/tasks/stylesheets/notee/highlight/atelier-forest-dark.css +69 -0
  47. data/lib/tasks/stylesheets/notee/highlight/atelier-forest-light.css +69 -0
  48. data/lib/tasks/stylesheets/notee/highlight/atelier-heath-dark.css +69 -0
  49. data/lib/tasks/stylesheets/notee/highlight/atelier-heath-light.css +69 -0
  50. data/lib/tasks/stylesheets/notee/highlight/atelier-lakeside-dark.css +69 -0
  51. data/lib/tasks/stylesheets/notee/highlight/atelier-lakeside-light.css +69 -0
  52. data/lib/tasks/stylesheets/notee/highlight/atelier-plateau-dark.css +84 -0
  53. data/lib/tasks/stylesheets/notee/highlight/atelier-plateau-light.css +84 -0
  54. data/lib/tasks/stylesheets/notee/highlight/atelier-savanna-dark.css +84 -0
  55. data/lib/tasks/stylesheets/notee/highlight/atelier-savanna-light.css +84 -0
  56. data/lib/tasks/stylesheets/notee/highlight/atelier-seaside-dark.css +69 -0
  57. data/lib/tasks/stylesheets/notee/highlight/atelier-seaside-light.css +69 -0
  58. data/lib/tasks/stylesheets/notee/highlight/atelier-sulphurpool-dark.css +69 -0
  59. data/lib/tasks/stylesheets/notee/highlight/atelier-sulphurpool-light.css +69 -0
  60. data/lib/tasks/stylesheets/notee/highlight/atom-one-dark.css +96 -0
  61. data/lib/tasks/stylesheets/notee/highlight/atom-one-light.css +96 -0
  62. data/lib/tasks/stylesheets/notee/highlight/brown-paper.css +64 -0
  63. data/lib/tasks/stylesheets/notee/highlight/brown-papersq.png +0 -0
  64. data/lib/tasks/stylesheets/notee/highlight/codepen-embed.css +60 -0
  65. data/lib/tasks/stylesheets/notee/highlight/color-brewer.css +71 -0
  66. data/lib/tasks/stylesheets/notee/highlight/darcula.css +77 -0
  67. data/lib/tasks/stylesheets/notee/highlight/dark.css +63 -0
  68. data/lib/tasks/stylesheets/notee/highlight/darkula.css +6 -0
  69. data/lib/tasks/stylesheets/notee/highlight/default.css +99 -0
  70. data/lib/tasks/stylesheets/notee/highlight/docco.css +97 -0
  71. data/lib/tasks/stylesheets/notee/highlight/dracula.css +76 -0
  72. data/lib/tasks/stylesheets/notee/highlight/far.css +71 -0
  73. data/lib/tasks/stylesheets/notee/highlight/foundation.css +88 -0
  74. data/lib/tasks/stylesheets/notee/highlight/github-gist.css +71 -0
  75. data/lib/tasks/stylesheets/notee/highlight/github.css +99 -0
  76. data/lib/tasks/stylesheets/notee/highlight/googlecode.css +89 -0
  77. data/lib/tasks/stylesheets/notee/highlight/grayscale.css +101 -0
  78. data/lib/tasks/stylesheets/notee/highlight/gruvbox-dark.css +108 -0
  79. data/lib/tasks/stylesheets/notee/highlight/gruvbox-light.css +108 -0
  80. data/lib/tasks/stylesheets/notee/highlight/hopscotch.css +83 -0
  81. data/lib/tasks/stylesheets/notee/highlight/hybrid.css +102 -0
  82. data/lib/tasks/stylesheets/notee/highlight/idea.css +97 -0
  83. data/lib/tasks/stylesheets/notee/highlight/ir-black.css +73 -0
  84. data/lib/tasks/stylesheets/notee/highlight/kimbie.dark.css +74 -0
  85. data/lib/tasks/stylesheets/notee/highlight/kimbie.light.css +74 -0
  86. data/lib/tasks/stylesheets/notee/highlight/magula.css +70 -0
  87. data/lib/tasks/stylesheets/notee/highlight/mono-blue.css +59 -0
  88. data/lib/tasks/stylesheets/notee/highlight/monokai-sublime.css +83 -0
  89. data/lib/tasks/stylesheets/notee/highlight/monokai.css +70 -0
  90. data/lib/tasks/stylesheets/notee/highlight/obsidian.css +88 -0
  91. data/lib/tasks/stylesheets/notee/highlight/ocean.css +74 -0
  92. data/lib/tasks/stylesheets/notee/highlight/paraiso-dark.css +72 -0
  93. data/lib/tasks/stylesheets/notee/highlight/paraiso-light.css +72 -0
  94. data/lib/tasks/stylesheets/notee/highlight/pojoaque.css +83 -0
  95. data/lib/tasks/stylesheets/notee/highlight/pojoaque.jpg +0 -0
  96. data/lib/tasks/stylesheets/notee/highlight/purebasic.css +96 -0
  97. data/lib/tasks/stylesheets/notee/highlight/qtcreator_dark.css +83 -0
  98. data/lib/tasks/stylesheets/notee/highlight/qtcreator_light.css +83 -0
  99. data/lib/tasks/stylesheets/notee/highlight/railscasts.css +106 -0
  100. data/lib/tasks/stylesheets/notee/highlight/rainbow.css +85 -0
  101. data/lib/tasks/stylesheets/notee/highlight/school-book.css +72 -0
  102. data/lib/tasks/stylesheets/notee/highlight/school-book.png +0 -0
  103. data/lib/tasks/stylesheets/notee/highlight/solarized-dark.css +84 -0
  104. data/lib/tasks/stylesheets/notee/highlight/solarized-light.css +84 -0
  105. data/lib/tasks/stylesheets/notee/highlight/sunburst.css +102 -0
  106. data/lib/tasks/stylesheets/notee/highlight/tomorrow-night-blue.css +75 -0
  107. data/lib/tasks/stylesheets/notee/highlight/tomorrow-night-bright.css +74 -0
  108. data/lib/tasks/stylesheets/notee/highlight/tomorrow-night-eighties.css +74 -0
  109. data/lib/tasks/stylesheets/notee/highlight/tomorrow-night.css +75 -0
  110. data/lib/tasks/stylesheets/notee/highlight/tomorrow.css +72 -0
  111. data/lib/tasks/stylesheets/notee/highlight/vs.css +68 -0
  112. data/lib/tasks/stylesheets/notee/highlight/xcode.css +93 -0
  113. data/lib/tasks/stylesheets/notee/highlight/xt256.css +92 -0
  114. data/lib/tasks/stylesheets/notee/highlight/zenburn.css +80 -0
  115. data/lib/tasks/stylesheets/notee/normalize.css +427 -0
  116. data/lib/tasks/stylesheets/notee/notee_default.css +386 -0
  117. data/lib/tasks/views/notee/about.html.erb +43 -0
  118. data/lib/tasks/views/notee/archives.html.erb +16 -0
  119. data/lib/tasks/views/notee/categories.html.erb +15 -0
  120. data/lib/tasks/views/notee/partials/_foote.html.erb +3 -0
  121. data/lib/tasks/views/notee/partials/_header.html.erb +17 -0
  122. data/lib/tasks/views/notee/partials/_profile.html.erb +9 -0
  123. data/lib/tasks/views/notee/partials/_sidebar.html.erb +23 -0
  124. data/lib/tasks/views/notee/posts.html.erb +53 -0
  125. data/lib/tasks/views/notee/show.html.erb +42 -0
  126. data/lib/tasks/views/notee/writers.html.erb +11 -0
  127. metadata +115 -240
  128. data/lib/tasks/css/notee_default.css +0 -59
  129. data/test/dummy/db/development.sqlite3 +0 -0
  130. data/test/dummy/db/test.sqlite3 +0 -0
  131. data/test/dummy/log/development.log +0 -3087
  132. data/test/dummy/log/test.log +0 -872
  133. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-t/-tdJTrCcY92VpiO_z6SIt_iHkHDtn1-8Vf__p-Ve9lU.cache +0 -1
  134. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0K/0KQJQyRy3gQkymW0xnPhM4_OpLtoTcw9Rutx4F4IajE.cache +0 -1
  135. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1B/1Bb2_fhXoTmM27WcuQJ2sr0UCMHh6TjrBIwd6Ks8qJ0.cache +0 -1
  136. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1N/1NYje2ld9grEMpvxBFjocEWWMPi4jNPuPLdlkV1Wq5A.cache +0 -0
  137. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1s/1sPuKGE0jImBtnCnczIk6NpOn9cYeyBZsXHvpXJ1tGA.cache +0 -2
  138. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1s/1sRxHck-81_JSGvEidXPx2S86Cbe0UjizohTg5lkd-U.cache +0 -0
  139. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3d/3dw9fS6dak9HSgJqviXZ6CCibFx8--QDKyWjrqKqraI.cache +0 -0
  140. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4S/4SCYKO2aAiXfZPZF1vTYeIQegrrqvH-2jlfGl1I6juQ.cache +0 -1
  141. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4z/4zE2reLAwChLIBivfo5JfQjRwOM2sBvlDLXftsA772o.cache +0 -1
  142. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
  143. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5p/5pDjSjY69Pd-A64UKCqQ_yxQouHkmBElVBKf1IZT2HM.cache +0 -1
  144. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5p/5pnvfhvSgahCnLPLbhB7dM8lSEhk2w39UTDXe83gYng.cache +0 -0
  145. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5r/5r2K8e-LRVnmo3VUaNdNx3K1b_BgFMOboxlnTQC_Ckk.cache +0 -1
  146. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5u/5ue4ZdF425UevYa9Danha84KDME2s4InW-zR-y-Y0SM.cache +0 -2
  147. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6Q/6Qq8Rnvquz8oH8ojJlj79pSAhSHH_VoWRS0Cn-d-yLQ.cache +0 -1
  148. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6Y/6Y--Gdy-iDkVFcgE3j660zOA3sf_osOedfJpeV_Kxh4.cache +0 -0
  149. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7G/7GrmDrSvjAFvLUcaRN95cQLmvkzf8D_cvGlhRyL01HA.cache +0 -1
  150. data/test/dummy/tmp/cache/assets/sprockets/v3.0/83/83mXRYYdvGZS4tNS_IFZLa5P6e-fg9MSMqWG4MJ-Jks.cache +0 -1
  151. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8H/8HKewCH2XL9errlVDVPK8QZg0LoH-_Q3zqQ1pjCYBEU.cache +0 -1
  152. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8v/8vJIODLLCFZwV8yIF98dlb5_CQZlgBdCLiM8UA6WiSA.cache +0 -1
  153. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9W/9WtQTxW8TE4CQvkem1QkHVjZFB93XAJo3ioPSt6U5wM.cache +0 -0
  154. data/test/dummy/tmp/cache/assets/sprockets/v3.0/AH/AHLaBPz-xNABgeh1V66iU7wJ6FCxvFIie5V05wRvI84.cache +0 -1
  155. data/test/dummy/tmp/cache/assets/sprockets/v3.0/C1/C1S3q8MtvUImrUe70fZPf9wxMfxdcWPSRXRrv4H6_lo.cache +0 -1
  156. data/test/dummy/tmp/cache/assets/sprockets/v3.0/D4/D4ftsVSRtZadejqqBmur8bfiHLhZFCaIjpsAdJT28Iw.cache +0 -1
  157. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache +0 -2
  158. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fr/FrWiXIfDo2-fsKFSgef9Bs-0HjC7dOgBY8IVBLCq9ag.cache +0 -1
  159. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fz/FzjTR8U_FOgMIbfYBgJfzujyNBozRZd-3YYTkiAQTOg.cache +0 -1
  160. data/test/dummy/tmp/cache/assets/sprockets/v3.0/G6/G6nKI6E9cfkIZqH5EnbMJtS4DKHApFlNTKh__ZuK774.cache +0 -2
  161. data/test/dummy/tmp/cache/assets/sprockets/v3.0/HH/HHQp4rqJ3kx9sfFo3AAW2DS6zHl28lCqALB5YnKXeG8.cache +0 -0
  162. data/test/dummy/tmp/cache/assets/sprockets/v3.0/IN/INpQmG9J4AOUCg2YWypvnwq9ce01SFPnDGidI2qcU_8.cache +0 -1
  163. data/test/dummy/tmp/cache/assets/sprockets/v3.0/J0/J038M_TjhJBb-678LCin4jaJSkSaaXy7XHJbEp1Bo5I.cache +0 -2
  164. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JI/JIHr2A9bWoln5XahhS15lRxvHSXdQZ7OrlbAW1IzayM.cache +0 -1
  165. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JI/JId5JhtAhhN90V7z1OSItT9m4n4H_Nfk3IGtOW0mA_s.cache +0 -3
  166. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JP/JPylOhsUjr9NtL1AViDe-Sz0-iLPZGPww463ChRqhEw.cache +0 -0
  167. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JU/JUdbchVNMjz67zIvPztSzFfpU_VO4Rl9V86GzJH28_A.cache +0 -2
  168. data/test/dummy/tmp/cache/assets/sprockets/v3.0/K0/K0Ou5PNqxeODBFSEnIeg7EaidQVBRvPH-SPrTF1tRVA.cache +0 -1
  169. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KS/KSTuVqjLw0xUGYH5WcnAloHDphCDQr4cFjXKKl5vW7M.cache +0 -0
  170. data/test/dummy/tmp/cache/assets/sprockets/v3.0/L-/L--JLWiCS6RZ0l_EciZOoY0eTEs6BGBED1YZ7hj13vQ.cache +0 -1
  171. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ME/META30ksADpNoAnM_vlhKhlLOfxBlo5uJjJKSJa264o.cache +0 -1
  172. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MH/MHQULHaqwmMfm67LLiF_ZDlM6Zix3aPput7pxTViWQ0.cache +0 -1
  173. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NK/NKXg7894FsAVQJxXzYkUOgd131zYAeWOIxmegdT-LFk.cache +0 -2
  174. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NW/NWx4g28WkpCPeRLdgMDaUuLO2e4UIw2bs-HKy-ixIlU.cache +0 -1
  175. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nj/NjPNj--fkweGPvPTHkDlefKtB5bpFaGG9X60M_goNUo.cache +0 -2
  176. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
  177. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Oh/Ohok7uysixzjxK1FE7m-KJv6gqYQH4svN8nZyRBOgwA.cache +0 -1
  178. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ot/Ot7COhZjTueyAONhzjXiOOwv0uTS9EtXGgxYznVMIvs.cache +0 -3
  179. data/test/dummy/tmp/cache/assets/sprockets/v3.0/P4/P4KZGx6J2yGIq1PMq13fnsaXrS47R-S_sYrQrcUL59I.cache +0 -3
  180. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pn/Pn9eXmle4fRjakm_xgwyXs5YzlWELSuhbi3nnV2-Ink.cache +0 -0
  181. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QY/QYNLSW9XctrfttzhOfkik5INswRo-qBjjwQvA7S_lyc.cache +0 -1
  182. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qb/Qbb4ATlvuCS0fudaTweqJoma2S99Mr2Q6ISbIpDoMso.cache +0 -0
  183. data/test/dummy/tmp/cache/assets/sprockets/v3.0/R6/R6E4Q8O1upT5p_U-ySDbO3dFY6SMeSwmubqJUfSJedo.cache +0 -0
  184. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rv/RvcRQ_I7meCLqBRooErlcPwcbH0tdDuvO5SQ_Xy45Qk.cache +0 -2
  185. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sz/SzRmx7uSmniNAGO1zMPd4qzEgM8eAaWBqaxestc32Jg.cache +0 -0
  186. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tk/TkRyIpbn-1DcVexPTWUljWQOek0D_q6yO_jYNGwKM_o.cache +0 -0
  187. data/test/dummy/tmp/cache/assets/sprockets/v3.0/U1/U1E_3Z4bItTBl9s8aX6O2rceqAD5GfoNzF8AqYs9Hig.cache +0 -0
  188. data/test/dummy/tmp/cache/assets/sprockets/v3.0/UC/UCe1qLwGTD6W2etoFOMln6E2DgTq8Xnm7eGvCs6YGEE.cache +0 -1
  189. data/test/dummy/tmp/cache/assets/sprockets/v3.0/UZ/UZhrzLOgNG132Xf1yJ7H7lSq4S3TyDoPphdzwKU8fqQ.cache +0 -3
  190. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ud/UdBXq-s3u32R-gjMCYZv9RJH4n1xSt8PnBpWxg-JzGE.cache +0 -1
  191. data/test/dummy/tmp/cache/assets/sprockets/v3.0/VD/VDaYJQJdErZ0zVg9KgvidORf7a13jqM72Uk97zzuUZU.cache +0 -2
  192. data/test/dummy/tmp/cache/assets/sprockets/v3.0/WT/WTExV_4iBOBS-SWMh6jqm61uSp83ezH5DPIkjfktls4.cache +0 -3
  193. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wi/Wia5tzg4hJNhNhKWgY7pkrxWbvr6n0YaKXl80wh6qPg.cache +0 -1
  194. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wl/WldqQqssrkJedTdiFt86Y6FDn5ww1MirVAAnOpRqeCE.cache +0 -3
  195. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wv/WvAZ72pGsB5VpmTmGBucm1eztH129yQ1YmrRMy-yS4g.cache +0 -0
  196. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wz/WzSkff9VUQsb0DJ5RB3m3SfxRTMU97qhyNCqiIHlJPw.cache +0 -1
  197. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Yx/Yx6fZ9ju2qCb4Ps_0iEzNR7KgDNTE2gIRjcdOMFXNlo.cache +0 -2
  198. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZO/ZOUPFk5_ZB8Wtn42g9PiY6Qu7KSbipNG04Qa5YSP6sw.cache +0 -0
  199. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZT/ZT-4a7lIKMm0Swxyt7MdXMz5v6r5MaVvtHvqAT6T8Ts.cache +0 -0
  200. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zb/ZbvOW6HdEiql0zdGkCPG-EK8beJAmp1ovBR1Oy1V6Fw.cache +0 -1
  201. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zu/ZuAoFB2A_kFOIb19dNUzEU5jP-SzQLmauPCURINz2Fo.cache +0 -0
  202. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_r/_rmEe1ir-igQN0twVhxrxngbLIFJkINITWVGNye4-MM.cache +0 -2
  203. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aE/aEQNT9eY4cAc2ACQnD35BkLV5dEezB-drcCoF1SzjAc.cache +0 -0
  204. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bK/bKPdLlYXb5ZZU8vrzCdKqLgCXyeiXHExSl9lwGIofU0.cache +0 -0
  205. data/test/dummy/tmp/cache/assets/sprockets/v3.0/br/brGLDCuoxhnIrvwsuWmzjnwDV7Bn_nezqOrXiI0oco0.cache +0 -3
  206. data/test/dummy/tmp/cache/assets/sprockets/v3.0/c3/c3Jo7UkNggNJH21U9HD-Y5Lipd68yZXcl6FGMbzFEeM.cache +0 -0
  207. data/test/dummy/tmp/cache/assets/sprockets/v3.0/c4/c4YjuvK4zQOjr5Q6N7A_-NHM59NF0kGApLBxSZ5JgqA.cache +0 -1
  208. data/test/dummy/tmp/cache/assets/sprockets/v3.0/c9/c9B4H9i5OvdAnZpel-KocssCcsd3TS2Gqe4uKAFjiKQ.cache +0 -1
  209. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dM/dMJ_N4wD6R1wforGNMdyz6wec-5a7_H03vxu0pgPhLc.cache +0 -0
  210. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dr/drYndmRIbBKroImntO4XhUYV5kqxE2q2qE_aYRwYj4Q.cache +0 -0
  211. data/test/dummy/tmp/cache/assets/sprockets/v3.0/du/dumQ6K8NP4rz74ofF4DxxFRetR-K07c75MhZrUQDbqY.cache +0 -3
  212. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fn/fns6a_EwXvrlRyeQjB9lcYXHfIZi0guP75oUWPuz4Z0.cache +0 -0
  213. data/test/dummy/tmp/cache/assets/sprockets/v3.0/g3/g3NfArxOfOGHlWIGK-Znm2-gh1Oyud_f5ZEFuGrOv2g.cache +0 -0
  214. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gF/gFErWaVWbjefUiSe3yI-bWCrUD3SsMHomSjTacMlSDM.cache +0 -2
  215. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gG/gGCsoohK0vflREMUeOrfW4KZeI73jU9ld5t0pzfjh4U.cache +0 -0
  216. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gZ/gZp3uXMHuYQC4hzCr7bQfetKNdJAtbQmg3so2KpW1Dw.cache +0 -2
  217. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hZ/Hz6pNt28QsuyrFcIx0afHONIVEGdLBEC64cV2zh2xAM.cache +0 -2
  218. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hZ/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +0 -0
  219. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hv/hvw4qAvufcLTOeT9ie13DTIDt3SOLih2iH9P603ZOFQ.cache +0 -0
  220. data/test/dummy/tmp/cache/assets/sprockets/v3.0/iZ/iZGxFM6U5PSEZmHGlksi8vAVBMlMiyjOBaL8HIGcOPE.cache +0 -0
  221. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ig/iguUMDAVIm9pfM52njpM4hqpnNYkwKTWvNXQyolgR74.cache +0 -0
  222. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jJ/jJTo0slnuZqKDbuFGjyBEkenWViH1MiTvb7gNjc4SL4.cache +0 -1
  223. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jN/jNM9mSzc6sg9yU7srXH0l2_bPIXbqLtJVBML2umXb9w.cache +0 -0
  224. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jh/jhx8TAOiUaenqesmOiahNzaVcnpiciOE8VKZdrxGerc.cache +0 -1
  225. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kT/kTif4yPNd0vB6fWie0kxsN5Gwubl8sqAOyydwpiyHzo.cache +0 -1
  226. data/test/dummy/tmp/cache/assets/sprockets/v3.0/m3/m3lSeIbfcyVVkENoCOiz_6LvNubosVesCJBkdI88aNk.cache +0 -1
  227. data/test/dummy/tmp/cache/assets/sprockets/v3.0/m6/m6kJHQNOyyMHxod8TObJKAp8iV_noMwYPWsBh-CCG0k.cache +0 -1
  228. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mX/mXJ655Gxgvg2C08jNcMFB9OQ2G6HrtGc_MfVIpYycsg.cache +0 -3
  229. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mr/MrG8zKUbpqoyxO2GdEOuWmFBUIpOKL3upEtfOWsYluQ.cache +0 -0
  230. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mr/mr-hjupF6Lf8wABiaoi8L9823j20yjhhTnrn4FNsEZI.cache +0 -1
  231. data/test/dummy/tmp/cache/assets/sprockets/v3.0/n2/n2T4JbhKpnbSE5uhnXyPzu4WnDOkMu78BrJ-Huhn7YU.cache +0 -2
  232. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nC/nCuKY2iJdzgSyWS09dThZ5T57F8vGBo0w-ycyuEidUk.cache +0 -1
  233. data/test/dummy/tmp/cache/assets/sprockets/v3.0/og/ogVEMp7SPQ-wAJz4mNXdRrx52GXFvHKpSx3bS7dr_t8.cache +0 -1
  234. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pE/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +0 -0
  235. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pO/pOOGu7nAdun08PmdiHZas85h5Kqbgs6_M5vHQQKJgW8.cache +0 -1
  236. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pX/pXIDW5zCrR8MxxTON9elPRDkMBEefpa-fWViSmyJGns.cache +0 -2
  237. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qF/qFG1ZnUOHTHsxMxvN1iTKNCA05nrecKPlygtJzvMdSs.cache +0 -2
  238. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sS/sS00IDFTJ19zoTjrB2-Sypybo0I1qXoTtW8JabBMoAo.cache +0 -0
  239. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sb/sbB7Wbcww5hxA8e-5K0oBKQDnlNNnY90t0YUIdYE138.cache +0 -1
  240. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xX/xXo4fouecqy2oZpxsgtkqL6uyIDuKLwBUwmzddno9hw.cache +0 -0
  241. data/test/dummy/tmp/cache/assets/sprockets/v3.0/x_/x_WcnsWyMV1QzLUnFW5J4gZHs0gACREYGaSom7xcaBQ.cache +0 -1
  242. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yC/yCp-2wuXWORHGqxfwG37-mb00X8GpHiRjrlo2QQX3lU.cache +0 -1
  243. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yW/yWtPpcB-kB8_hw5k0prtaOvTW5A5PaCT0ZaJSdh8Zkw.cache +0 -0
  244. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ys/ysFM6FIJniGme1T62LOmRFt3h7g0scd6o6BFIjS5Ppg.cache +0 -0
  245. data/test/dummy/tmp/cache/assets/sprockets/v3.0/z4/z4i9WzpZRzFXynWsqewNMikNdcZ9f9mGFdlrIP5N6Gs.cache +0 -1
  246. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zN/zNfQXfFXMTyOoz3HbVM-_4m-46rWO7XrZPvGs4aJCQc.cache +0 -2
@@ -1,872 +0,0 @@
1
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
2
-  (0.1ms) SELECT version FROM "schema_migrations"
3
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
4
-  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
6
-  (0.1ms) begin transaction
7
- SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2016-07-13 09:52:58 UTC], ["updated_at", 2016-07-13 09:52:58 UTC]]
8
-  (0.7ms) commit transaction
9
- ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
10
-  (0.1ms) begin transaction
11
-  (0.0ms) commit transaction
12
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
14
- Migrating to CreateNoteePosts (20160605141437)
15
-  (0.1ms) begin transaction
16
-  (0.5ms) CREATE TABLE "notee_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar DEFAULT 'no title', "content" text, "slug" varchar DEFAULT '2016-18-53-16', "status" integer DEFAULT 0, "category_id" integer DEFAULT 0, "thumbnail_id" integer DEFAULT 0, "published_at" datetime DEFAULT '2016-07-13 09:53:16.087662', "seo_keyword" varchar DEFAULT '', "seo_description" varchar DEFAULT '', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
17
-  (0.4ms) select sqlite_version(*)
18
-  (0.3ms) CREATE UNIQUE INDEX "index_notee_posts_on_slug" ON "notee_posts" ("slug")
19
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160605141437"]]
20
-  (1.0ms) commit transaction
21
- Migrating to CreateNoteeCategories (20160605141510)
22
-  (0.1ms) begin transaction
23
-  (0.3ms) CREATE TABLE "notee_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar DEFAULT 'category_name' NOT NULL, "slug" varchar DEFAULT '2016-18-53-16' NOT NULL, "parent_id" integer, "status" integer DEFAULT 0 NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
24
-  (0.4ms) CREATE UNIQUE INDEX "index_notee_categories_on_slug" ON "notee_categories" ("slug")
25
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160605141510"]]
26
-  (1.0ms) commit transaction
27
- Migrating to CreateNoteeImages (20160605141547)
28
-  (0.1ms) begin transaction
29
-  (0.5ms) CREATE TABLE "notee_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
30
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160605141547"]]
31
-  (0.8ms) commit transaction
32
- Migrating to CreateNoteeTokens (20160608102012)
33
-  (0.1ms) begin transaction
34
-  (1.4ms) CREATE TABLE "notee_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "access_token" varchar NOT NULL, "expires_at" datetime NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
35
-  (0.4ms) CREATE UNIQUE INDEX "index_notee_tokens_on_access_token" ON "notee_tokens" ("access_token")
36
- SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160608102012"]]
37
-  (0.9ms) commit transaction
38
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
39
-  (0.1ms) begin transaction
40
-  (0.0ms) commit transaction
41
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
42
-  (0.1ms)  SELECT sql
43
- FROM sqlite_master
44
- WHERE name='index_notee_categories_on_slug' AND type='index'
45
- UNION ALL
46
- SELECT sql
47
- FROM sqlite_temp_master
48
- WHERE name='index_notee_categories_on_slug' AND type='index'
49
- 
50
-  (0.1ms)  SELECT sql
51
- FROM sqlite_master
52
- WHERE name='index_notee_posts_on_slug' AND type='index'
53
- UNION ALL
54
- SELECT sql
55
- FROM sqlite_temp_master
56
- WHERE name='index_notee_posts_on_slug' AND type='index'
57
- 
58
-  (0.1ms)  SELECT sql
59
- FROM sqlite_master
60
- WHERE name='index_notee_tokens_on_access_token' AND type='index'
61
- UNION ALL
62
- SELECT sql
63
- FROM sqlite_temp_master
64
- WHERE name='index_notee_tokens_on_access_token' AND type='index'
65
- 
66
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
67
-  (0.1ms) begin transaction
68
- Fixture Delete (0.8ms) DELETE FROM "notee_categories"
69
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.183093', '2016-07-13 09:53:23.183093', 980190962)
70
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.183093', '2016-07-13 09:53:23.183093', 298486374)
71
-  (0.7ms) rollback transaction
72
-  (0.1ms) begin transaction
73
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
74
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.194652', '2016-07-13 09:53:23.194652', 980190962)
75
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.194652', '2016-07-13 09:53:23.194652', 298486374)
76
-  (0.5ms) rollback transaction
77
-  (0.1ms) begin transaction
78
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
79
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.206090', '2016-07-13 09:53:23.206090', 980190962)
80
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.206090', '2016-07-13 09:53:23.206090', 298486374)
81
-  (0.4ms) rollback transaction
82
-  (0.1ms) begin transaction
83
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
84
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.210807', '2016-07-13 09:53:23.210807', 980190962)
85
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.210807', '2016-07-13 09:53:23.210807', 298486374)
86
-  (0.3ms) rollback transaction
87
-  (0.0ms) begin transaction
88
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
89
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.215217', '2016-07-13 09:53:23.215217', 980190962)
90
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.215217', '2016-07-13 09:53:23.215217', 298486374)
91
-  (0.8ms) rollback transaction
92
-  (0.2ms) begin transaction
93
- Fixture Delete (0.4ms) DELETE FROM "notee_categories"
94
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.225370', '2016-07-13 09:53:23.225370', 980190962)
95
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.225370', '2016-07-13 09:53:23.225370', 298486374)
96
-  (0.3ms) rollback transaction
97
-  (0.1ms) begin transaction
98
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
99
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.231518', '2016-07-13 09:53:23.231518', 980190962)
100
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.231518', '2016-07-13 09:53:23.231518', 298486374)
101
-  (0.4ms) rollback transaction
102
-  (0.1ms) begin transaction
103
- Fixture Delete (0.4ms) DELETE FROM "notee_categories"
104
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.238324', '2016-07-13 09:53:23.238324', 980190962)
105
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.238324', '2016-07-13 09:53:23.238324', 298486374)
106
-  (0.5ms) rollback transaction
107
-  (0.1ms) begin transaction
108
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
109
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.250973', '2016-07-13 09:53:23.250973', 980190962)
110
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.250973', '2016-07-13 09:53:23.250973', 298486374)
111
-  (0.5ms) rollback transaction
112
-  (0.1ms) begin transaction
113
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
114
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.257036', '2016-07-13 09:53:23.257036', 980190962)
115
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.257036', '2016-07-13 09:53:23.257036', 298486374)
116
-  (0.4ms) rollback transaction
117
-  (0.1ms) begin transaction
118
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
119
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.261514', '2016-07-13 09:53:23.261514', 980190962)
120
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.261514', '2016-07-13 09:53:23.261514', 298486374)
121
-  (0.3ms) rollback transaction
122
-  (0.1ms) begin transaction
123
- Fixture Delete (0.4ms) DELETE FROM "notee_categories"
124
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.266857', '2016-07-13 09:53:23.266857', 980190962)
125
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.266857', '2016-07-13 09:53:23.266857', 298486374)
126
-  (1.0ms) rollback transaction
127
-  (0.1ms) begin transaction
128
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
129
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.278558', '2016-07-13 09:53:23.278558', 980190962)
130
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.278558', '2016-07-13 09:53:23.278558', 298486374)
131
-  (0.3ms) rollback transaction
132
-  (0.1ms) begin transaction
133
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
134
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.283079', '2016-07-13 09:53:23.283079', 980190962)
135
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.283079', '2016-07-13 09:53:23.283079', 298486374)
136
-  (0.5ms) rollback transaction
137
-  (0.1ms) begin transaction
138
- Fixture Delete (0.4ms) DELETE FROM "notee_categories"
139
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.288831', '2016-07-13 09:53:23.288831', 980190962)
140
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.288831', '2016-07-13 09:53:23.288831', 298486374)
141
-  (0.4ms) rollback transaction
142
-  (0.1ms) begin transaction
143
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
144
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.297491', '2016-07-13 09:53:23.297491', 980190962)
145
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.297491', '2016-07-13 09:53:23.297491', 298486374)
146
-  (0.5ms) rollback transaction
147
-  (0.1ms) begin transaction
148
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
149
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.310846', '2016-07-13 09:53:23.310846', 980190962)
150
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.310846', '2016-07-13 09:53:23.310846', 298486374)
151
-  (0.5ms) rollback transaction
152
-  (0.1ms) begin transaction
153
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
154
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.316314', '2016-07-13 09:53:23.316314', 980190962)
155
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.316314', '2016-07-13 09:53:23.316314', 298486374)
156
-  (0.4ms) rollback transaction
157
-  (0.1ms) begin transaction
158
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
159
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.321233', '2016-07-13 09:53:23.321233', 980190962)
160
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.321233', '2016-07-13 09:53:23.321233', 298486374)
161
-  (0.7ms) rollback transaction
162
-  (0.1ms) begin transaction
163
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
164
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.327343', '2016-07-13 09:53:23.327343', 980190962)
165
- Fixture Insert (2.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.327343', '2016-07-13 09:53:23.327343', 298486374)
166
-  (0.4ms) rollback transaction
167
-  (0.1ms) begin transaction
168
- Fixture Delete (0.6ms) DELETE FROM "notee_categories"
169
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.340506', '2016-07-13 09:53:23.340506', 980190962)
170
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.340506', '2016-07-13 09:53:23.340506', 298486374)
171
-  (0.4ms) rollback transaction
172
-  (0.0ms) begin transaction
173
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
174
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.347694', '2016-07-13 09:53:23.347694', 980190962)
175
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.347694', '2016-07-13 09:53:23.347694', 298486374)
176
-  (0.4ms) rollback transaction
177
-  (0.1ms) begin transaction
178
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
179
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.352352', '2016-07-13 09:53:23.352352', 980190962)
180
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 09:53:23.352352', '2016-07-13 09:53:23.352352', 298486374)
181
-  (1.4ms) rollback transaction
182
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
183
-  (0.1ms) begin transaction
184
- Fixture Delete (0.8ms) DELETE FROM "notee_categories"
185
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.574467', '2016-07-13 10:10:17.574467', 980190962)
186
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.574467', '2016-07-13 10:10:17.574467', 298486374)
187
-  (0.7ms) rollback transaction
188
-  (0.1ms) begin transaction
189
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
190
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.585914', '2016-07-13 10:10:17.585914', 980190962)
191
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.585914', '2016-07-13 10:10:17.585914', 298486374)
192
-  (0.5ms) rollback transaction
193
-  (0.1ms) begin transaction
194
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
195
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.597631', '2016-07-13 10:10:17.597631', 980190962)
196
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.597631', '2016-07-13 10:10:17.597631', 298486374)
197
-  (0.4ms) rollback transaction
198
-  (0.1ms) begin transaction
199
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
200
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.611073', '2016-07-13 10:10:17.611073', 980190962)
201
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.611073', '2016-07-13 10:10:17.611073', 298486374)
202
-  (0.4ms) rollback transaction
203
-  (0.0ms) begin transaction
204
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
205
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.616405', '2016-07-13 10:10:17.616405', 980190962)
206
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.616405', '2016-07-13 10:10:17.616405', 298486374)
207
-  (0.4ms) rollback transaction
208
-  (0.1ms) begin transaction
209
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
210
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.621152', '2016-07-13 10:10:17.621152', 980190962)
211
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.621152', '2016-07-13 10:10:17.621152', 298486374)
212
-  (0.4ms) rollback transaction
213
-  (0.1ms) begin transaction
214
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
215
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.626248', '2016-07-13 10:10:17.626248', 980190962)
216
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.626248', '2016-07-13 10:10:17.626248', 298486374)
217
-  (0.4ms) rollback transaction
218
-  (0.1ms) begin transaction
219
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
220
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.632319', '2016-07-13 10:10:17.632319', 980190962)
221
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.632319', '2016-07-13 10:10:17.632319', 298486374)
222
-  (0.4ms) rollback transaction
223
-  (0.1ms) begin transaction
224
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
225
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.641862', '2016-07-13 10:10:17.641862', 980190962)
226
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.641862', '2016-07-13 10:10:17.641862', 298486374)
227
-  (0.3ms) rollback transaction
228
-  (0.1ms) begin transaction
229
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
230
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.646958', '2016-07-13 10:10:17.646958', 980190962)
231
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.646958', '2016-07-13 10:10:17.646958', 298486374)
232
-  (0.4ms) rollback transaction
233
-  (0.2ms) begin transaction
234
- Fixture Delete (1.1ms) DELETE FROM "notee_categories"
235
- Fixture Insert (0.6ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.655189', '2016-07-13 10:10:17.655189', 980190962)
236
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.655189', '2016-07-13 10:10:17.655189', 298486374)
237
-  (0.3ms) rollback transaction
238
-  (0.1ms) begin transaction
239
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
240
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.665454', '2016-07-13 10:10:17.665454', 980190962)
241
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.665454', '2016-07-13 10:10:17.665454', 298486374)
242
-  (0.4ms) rollback transaction
243
-  (0.1ms) begin transaction
244
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
245
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.670730', '2016-07-13 10:10:17.670730', 980190962)
246
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.670730', '2016-07-13 10:10:17.670730', 298486374)
247
-  (0.4ms) rollback transaction
248
-  (0.1ms) begin transaction
249
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
250
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.676106', '2016-07-13 10:10:17.676106', 980190962)
251
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.676106', '2016-07-13 10:10:17.676106', 298486374)
252
-  (0.4ms) rollback transaction
253
-  (0.1ms) begin transaction
254
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
255
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.684894', '2016-07-13 10:10:17.684894', 980190962)
256
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.684894', '2016-07-13 10:10:17.684894', 298486374)
257
-  (0.4ms) rollback transaction
258
-  (0.1ms) begin transaction
259
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
260
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.690437', '2016-07-13 10:10:17.690437', 980190962)
261
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.690437', '2016-07-13 10:10:17.690437', 298486374)
262
-  (0.4ms) rollback transaction
263
-  (0.0ms) begin transaction
264
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
265
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.695300', '2016-07-13 10:10:17.695300', 980190962)
266
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.695300', '2016-07-13 10:10:17.695300', 298486374)
267
-  (0.3ms) rollback transaction
268
-  (0.1ms) begin transaction
269
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
270
- Fixture Insert (0.6ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.700397', '2016-07-13 10:10:17.700397', 980190962)
271
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.700397', '2016-07-13 10:10:17.700397', 298486374)
272
-  (0.8ms) rollback transaction
273
-  (0.1ms) begin transaction
274
- Fixture Delete (0.7ms) DELETE FROM "notee_categories"
275
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.713258', '2016-07-13 10:10:17.713258', 980190962)
276
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.713258', '2016-07-13 10:10:17.713258', 298486374)
277
-  (1.1ms) rollback transaction
278
-  (0.2ms) begin transaction
279
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
280
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.723264', '2016-07-13 10:10:17.723264', 980190962)
281
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.723264', '2016-07-13 10:10:17.723264', 298486374)
282
-  (0.5ms) rollback transaction
283
-  (0.1ms) begin transaction
284
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
285
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.732400', '2016-07-13 10:10:17.732400', 980190962)
286
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.732400', '2016-07-13 10:10:17.732400', 298486374)
287
-  (0.4ms) rollback transaction
288
-  (0.1ms) begin transaction
289
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
290
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.745364', '2016-07-13 10:10:17.745364', 980190962)
291
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.745364', '2016-07-13 10:10:17.745364', 298486374)
292
-  (0.3ms) rollback transaction
293
-  (0.1ms) begin transaction
294
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
295
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.751832', '2016-07-13 10:10:17.751832', 980190962)
296
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:17.751832', '2016-07-13 10:10:17.751832', 298486374)
297
-  (0.4ms) rollback transaction
298
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
299
-  (0.1ms) begin transaction
300
- Fixture Delete (1.0ms) DELETE FROM "notee_categories"
301
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.137405', '2016-07-13 10:10:44.137405', 980190962)
302
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.137405', '2016-07-13 10:10:44.137405', 298486374)
303
-  (0.3ms) rollback transaction
304
-  (0.1ms) begin transaction
305
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
306
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.148355', '2016-07-13 10:10:44.148355', 980190962)
307
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.148355', '2016-07-13 10:10:44.148355', 298486374)
308
-  (0.4ms) rollback transaction
309
-  (0.1ms) begin transaction
310
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
311
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.155122', '2016-07-13 10:10:44.155122', 980190962)
312
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.155122', '2016-07-13 10:10:44.155122', 298486374)
313
-  (0.4ms) rollback transaction
314
-  (0.1ms) begin transaction
315
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
316
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.163533', '2016-07-13 10:10:44.163533', 980190962)
317
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.163533', '2016-07-13 10:10:44.163533', 298486374)
318
-  (0.3ms) rollback transaction
319
-  (0.1ms) begin transaction
320
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
321
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.168493', '2016-07-13 10:10:44.168493', 980190962)
322
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.168493', '2016-07-13 10:10:44.168493', 298486374)
323
-  (0.4ms) rollback transaction
324
-  (0.0ms) begin transaction
325
- Fixture Delete (0.6ms) DELETE FROM "notee_categories"
326
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.173087', '2016-07-13 10:10:44.173087', 980190962)
327
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.173087', '2016-07-13 10:10:44.173087', 298486374)
328
-  (0.5ms) rollback transaction
329
-  (0.2ms) begin transaction
330
- Fixture Delete (0.4ms) DELETE FROM "notee_categories"
331
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.181339', '2016-07-13 10:10:44.181339', 980190962)
332
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.181339', '2016-07-13 10:10:44.181339', 298486374)
333
-  (0.4ms) rollback transaction
334
-  (0.1ms) begin transaction
335
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
336
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.187810', '2016-07-13 10:10:44.187810', 980190962)
337
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.187810', '2016-07-13 10:10:44.187810', 298486374)
338
-  (0.4ms) rollback transaction
339
-  (0.1ms) begin transaction
340
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
341
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.193353', '2016-07-13 10:10:44.193353', 980190962)
342
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.193353', '2016-07-13 10:10:44.193353', 298486374)
343
-  (0.5ms) rollback transaction
344
-  (0.1ms) begin transaction
345
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
346
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.201104', '2016-07-13 10:10:44.201104', 980190962)
347
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.201104', '2016-07-13 10:10:44.201104', 298486374)
348
-  (0.4ms) rollback transaction
349
-  (0.1ms) begin transaction
350
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
351
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.208688', '2016-07-13 10:10:44.208688', 980190962)
352
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.208688', '2016-07-13 10:10:44.208688', 298486374)
353
-  (0.4ms) rollback transaction
354
-  (0.1ms) begin transaction
355
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
356
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.218811', '2016-07-13 10:10:44.218811', 980190962)
357
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.218811', '2016-07-13 10:10:44.218811', 298486374)
358
-  (0.4ms) rollback transaction
359
-  (0.1ms) begin transaction
360
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
361
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.226231', '2016-07-13 10:10:44.226231', 980190962)
362
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.226231', '2016-07-13 10:10:44.226231', 298486374)
363
-  (0.4ms) rollback transaction
364
-  (0.1ms) begin transaction
365
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
366
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.233295', '2016-07-13 10:10:44.233295', 980190962)
367
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.233295', '2016-07-13 10:10:44.233295', 298486374)
368
-  (1.3ms) rollback transaction
369
-  (0.1ms) begin transaction
370
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
371
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.241554', '2016-07-13 10:10:44.241554', 980190962)
372
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.241554', '2016-07-13 10:10:44.241554', 298486374)
373
-  (0.7ms) rollback transaction
374
-  (0.1ms) begin transaction
375
- Fixture Delete (0.5ms) DELETE FROM "notee_categories"
376
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.249390', '2016-07-13 10:10:44.249390', 980190962)
377
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.249390', '2016-07-13 10:10:44.249390', 298486374)
378
-  (0.4ms) rollback transaction
379
-  (0.1ms) begin transaction
380
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
381
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.258669', '2016-07-13 10:10:44.258669', 980190962)
382
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.258669', '2016-07-13 10:10:44.258669', 298486374)
383
-  (0.4ms) rollback transaction
384
-  (0.1ms) begin transaction
385
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
386
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.264233', '2016-07-13 10:10:44.264233', 980190962)
387
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.264233', '2016-07-13 10:10:44.264233', 298486374)
388
-  (0.4ms) rollback transaction
389
-  (0.0ms) begin transaction
390
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
391
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.269093', '2016-07-13 10:10:44.269093', 980190962)
392
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.269093', '2016-07-13 10:10:44.269093', 298486374)
393
-  (0.4ms) rollback transaction
394
-  (0.0ms) begin transaction
395
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
396
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.273960', '2016-07-13 10:10:44.273960', 980190962)
397
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.273960', '2016-07-13 10:10:44.273960', 298486374)
398
-  (0.3ms) rollback transaction
399
-  (0.1ms) begin transaction
400
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
401
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.279001', '2016-07-13 10:10:44.279001', 980190962)
402
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.279001', '2016-07-13 10:10:44.279001', 298486374)
403
-  (0.4ms) rollback transaction
404
-  (0.0ms) begin transaction
405
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
406
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.284343', '2016-07-13 10:10:44.284343', 980190962)
407
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.284343', '2016-07-13 10:10:44.284343', 298486374)
408
-  (0.4ms) rollback transaction
409
-  (0.1ms) begin transaction
410
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
411
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.290308', '2016-07-13 10:10:44.290308', 980190962)
412
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:10:44.290308', '2016-07-13 10:10:44.290308', 298486374)
413
-  (0.5ms) rollback transaction
414
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
415
-  (0.1ms) begin transaction
416
- Fixture Delete (0.8ms) DELETE FROM "notee_categories"
417
- Fixture Insert (0.4ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.606663', '2016-07-13 10:11:42.606663', 980190962)
418
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.606663', '2016-07-13 10:11:42.606663', 298486374)
419
-  (0.3ms) rollback transaction
420
-  (0.1ms) begin transaction
421
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
422
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.616830', '2016-07-13 10:11:42.616830', 980190962)
423
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.616830', '2016-07-13 10:11:42.616830', 298486374)
424
-  (0.4ms) rollback transaction
425
-  (0.1ms) begin transaction
426
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
427
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.630126', '2016-07-13 10:11:42.630126', 980190962)
428
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.630126', '2016-07-13 10:11:42.630126', 298486374)
429
-  (0.3ms) rollback transaction
430
-  (0.1ms) begin transaction
431
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
432
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.635243', '2016-07-13 10:11:42.635243', 980190962)
433
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.635243', '2016-07-13 10:11:42.635243', 298486374)
434
-  (0.3ms) rollback transaction
435
-  (0.1ms) begin transaction
436
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
437
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.640174', '2016-07-13 10:11:42.640174', 980190962)
438
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.640174', '2016-07-13 10:11:42.640174', 298486374)
439
-  (0.5ms) rollback transaction
440
-  (0.2ms) begin transaction
441
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
442
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.650798', '2016-07-13 10:11:42.650798', 980190962)
443
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.650798', '2016-07-13 10:11:42.650798', 298486374)
444
-  (0.3ms) rollback transaction
445
-  (0.1ms) begin transaction
446
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
447
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.657618', '2016-07-13 10:11:42.657618', 980190962)
448
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.657618', '2016-07-13 10:11:42.657618', 298486374)
449
-  (0.3ms) rollback transaction
450
-  (0.1ms) begin transaction
451
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
452
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.663959', '2016-07-13 10:11:42.663959', 980190962)
453
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.663959', '2016-07-13 10:11:42.663959', 298486374)
454
-  (0.4ms) rollback transaction
455
-  (0.1ms) begin transaction
456
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
457
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.672622', '2016-07-13 10:11:42.672622', 980190962)
458
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.672622', '2016-07-13 10:11:42.672622', 298486374)
459
-  (0.4ms) rollback transaction
460
-  (0.1ms) begin transaction
461
- Fixture Delete (0.4ms) DELETE FROM "notee_categories"
462
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.682057', '2016-07-13 10:11:42.682057', 980190962)
463
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.682057', '2016-07-13 10:11:42.682057', 298486374)
464
-  (0.3ms) rollback transaction
465
-  (0.1ms) begin transaction
466
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
467
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.687773', '2016-07-13 10:11:42.687773', 980190962)
468
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.687773', '2016-07-13 10:11:42.687773', 298486374)
469
-  (0.4ms) rollback transaction
470
-  (0.2ms) begin transaction
471
- Fixture Delete (0.4ms) DELETE FROM "notee_categories"
472
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.695565', '2016-07-13 10:11:42.695565', 980190962)
473
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.695565', '2016-07-13 10:11:42.695565', 298486374)
474
-  (0.7ms) rollback transaction
475
-  (0.1ms) begin transaction
476
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
477
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.705082', '2016-07-13 10:11:42.705082', 980190962)
478
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.705082', '2016-07-13 10:11:42.705082', 298486374)
479
-  (0.3ms) rollback transaction
480
-  (0.1ms) begin transaction
481
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
482
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.710146', '2016-07-13 10:11:42.710146', 980190962)
483
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.710146', '2016-07-13 10:11:42.710146', 298486374)
484
-  (0.5ms) rollback transaction
485
-  (0.1ms) begin transaction
486
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
487
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.716969', '2016-07-13 10:11:42.716969', 980190962)
488
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.716969', '2016-07-13 10:11:42.716969', 298486374)
489
-  (0.4ms) rollback transaction
490
-  (0.1ms) begin transaction
491
- Fixture Delete (0.5ms) DELETE FROM "notee_categories"
492
- Fixture Insert (0.4ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.725802', '2016-07-13 10:11:42.725802', 980190962)
493
- Fixture Insert (0.6ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.725802', '2016-07-13 10:11:42.725802', 298486374)
494
-  (1.2ms) rollback transaction
495
-  (0.1ms) begin transaction
496
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
497
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.741626', '2016-07-13 10:11:42.741626', 980190962)
498
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.741626', '2016-07-13 10:11:42.741626', 298486374)
499
-  (0.3ms) rollback transaction
500
-  (0.1ms) begin transaction
501
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
502
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.747922', '2016-07-13 10:11:42.747922', 980190962)
503
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.747922', '2016-07-13 10:11:42.747922', 298486374)
504
-  (0.3ms) rollback transaction
505
-  (0.1ms) begin transaction
506
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
507
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.752824', '2016-07-13 10:11:42.752824', 980190962)
508
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.752824', '2016-07-13 10:11:42.752824', 298486374)
509
-  (0.4ms) rollback transaction
510
-  (0.1ms) begin transaction
511
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
512
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.761027', '2016-07-13 10:11:42.761027', 980190962)
513
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.761027', '2016-07-13 10:11:42.761027', 298486374)
514
-  (0.4ms) rollback transaction
515
-  (0.1ms) begin transaction
516
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
517
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.769243', '2016-07-13 10:11:42.769243', 980190962)
518
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.769243', '2016-07-13 10:11:42.769243', 298486374)
519
-  (0.4ms) rollback transaction
520
-  (0.0ms) begin transaction
521
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
522
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.773963', '2016-07-13 10:11:42.773963', 980190962)
523
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.773963', '2016-07-13 10:11:42.773963', 298486374)
524
-  (1.0ms) rollback transaction
525
-  (0.1ms) begin transaction
526
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
527
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.786923', '2016-07-13 10:11:42.786923', 980190962)
528
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:11:42.786923', '2016-07-13 10:11:42.786923', 298486374)
529
-  (0.4ms) rollback transaction
530
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
531
-  (0.1ms) begin transaction
532
- Fixture Delete (1.0ms) DELETE FROM "notee_categories"
533
- Fixture Insert (0.4ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.762725', '2016-07-13 10:13:14.762725', 980190962)
534
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.762725', '2016-07-13 10:13:14.762725', 298486374)
535
-  (0.3ms) rollback transaction
536
-  (0.1ms) begin transaction
537
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
538
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.772888', '2016-07-13 10:13:14.772888', 980190962)
539
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.772888', '2016-07-13 10:13:14.772888', 298486374)
540
-  (0.3ms) rollback transaction
541
-  (0.1ms) begin transaction
542
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
543
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.778321', '2016-07-13 10:13:14.778321', 980190962)
544
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.778321', '2016-07-13 10:13:14.778321', 298486374)
545
-  (0.4ms) rollback transaction
546
-  (0.1ms) begin transaction
547
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
548
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.783490', '2016-07-13 10:13:14.783490', 980190962)
549
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.783490', '2016-07-13 10:13:14.783490', 298486374)
550
-  (0.4ms) rollback transaction
551
-  (0.1ms) begin transaction
552
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
553
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.791261', '2016-07-13 10:13:14.791261', 980190962)
554
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.791261', '2016-07-13 10:13:14.791261', 298486374)
555
-  (0.4ms) rollback transaction
556
-  (0.1ms) begin transaction
557
- Fixture Delete (0.6ms) DELETE FROM "notee_categories"
558
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.795947', '2016-07-13 10:13:14.795947', 980190962)
559
- Fixture Insert (0.6ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.795947', '2016-07-13 10:13:14.795947', 298486374)
560
-  (0.7ms) rollback transaction
561
-  (0.1ms) begin transaction
562
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
563
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.808020', '2016-07-13 10:13:14.808020', 980190962)
564
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.808020', '2016-07-13 10:13:14.808020', 298486374)
565
-  (0.4ms) rollback transaction
566
-  (0.1ms) begin transaction
567
- Fixture Delete (2.4ms) DELETE FROM "notee_categories"
568
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.817750', '2016-07-13 10:13:14.817750', 980190962)
569
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.817750', '2016-07-13 10:13:14.817750', 298486374)
570
-  (0.4ms) rollback transaction
571
-  (0.1ms) begin transaction
572
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
573
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.825650', '2016-07-13 10:13:14.825650', 980190962)
574
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.825650', '2016-07-13 10:13:14.825650', 298486374)
575
-  (0.4ms) rollback transaction
576
-  (0.1ms) begin transaction
577
- Fixture Delete (0.5ms) DELETE FROM "notee_categories"
578
- Fixture Insert (0.4ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.830444', '2016-07-13 10:13:14.830444', 980190962)
579
- Fixture Insert (0.4ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.830444', '2016-07-13 10:13:14.830444', 298486374)
580
-  (0.9ms) rollback transaction
581
-  (0.1ms) begin transaction
582
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
583
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.843697', '2016-07-13 10:13:14.843697', 980190962)
584
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.843697', '2016-07-13 10:13:14.843697', 298486374)
585
-  (0.3ms) rollback transaction
586
-  (0.1ms) begin transaction
587
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
588
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.848578', '2016-07-13 10:13:14.848578', 980190962)
589
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.848578', '2016-07-13 10:13:14.848578', 298486374)
590
-  (0.4ms) rollback transaction
591
-  (0.0ms) begin transaction
592
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
593
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.852996', '2016-07-13 10:13:14.852996', 980190962)
594
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.852996', '2016-07-13 10:13:14.852996', 298486374)
595
-  (0.4ms) rollback transaction
596
-  (0.1ms) begin transaction
597
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
598
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.858637', '2016-07-13 10:13:14.858637', 980190962)
599
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.858637', '2016-07-13 10:13:14.858637', 298486374)
600
-  (0.4ms) rollback transaction
601
-  (0.1ms) begin transaction
602
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
603
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.867167', '2016-07-13 10:13:14.867167', 980190962)
604
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.867167', '2016-07-13 10:13:14.867167', 298486374)
605
-  (0.3ms) rollback transaction
606
-  (0.1ms) begin transaction
607
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
608
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.871983', '2016-07-13 10:13:14.871983', 980190962)
609
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.871983', '2016-07-13 10:13:14.871983', 298486374)
610
-  (0.3ms) rollback transaction
611
-  (0.1ms) begin transaction
612
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
613
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.876592', '2016-07-13 10:13:14.876592', 980190962)
614
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.876592', '2016-07-13 10:13:14.876592', 298486374)
615
-  (0.4ms) rollback transaction
616
-  (0.3ms) begin transaction
617
- Fixture Delete (0.7ms) DELETE FROM "notee_categories"
618
- Fixture Insert (0.4ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.883994', '2016-07-13 10:13:14.883994', 980190962)
619
- Fixture Insert (0.6ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.883994', '2016-07-13 10:13:14.883994', 298486374)
620
-  (0.9ms) rollback transaction
621
-  (0.1ms) begin transaction
622
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
623
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.894018', '2016-07-13 10:13:14.894018', 980190962)
624
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.894018', '2016-07-13 10:13:14.894018', 298486374)
625
-  (0.4ms) rollback transaction
626
-  (0.1ms) begin transaction
627
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
628
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.903286', '2016-07-13 10:13:14.903286', 980190962)
629
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.903286', '2016-07-13 10:13:14.903286', 298486374)
630
-  (0.4ms) rollback transaction
631
-  (0.0ms) begin transaction
632
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
633
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.907915', '2016-07-13 10:13:14.907915', 980190962)
634
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.907915', '2016-07-13 10:13:14.907915', 298486374)
635
-  (0.4ms) rollback transaction
636
-  (0.1ms) begin transaction
637
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
638
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.913143', '2016-07-13 10:13:14.913143', 980190962)
639
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:13:14.913143', '2016-07-13 10:13:14.913143', 298486374)
640
-  (0.8ms) rollback transaction
641
- ActiveRecord::SchemaMigration Load (1.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
642
-  (0.1ms) begin transaction
643
- ---------------------------------------------------
644
- Notee::ImagesControllerTest: test_should_show_image
645
- ---------------------------------------------------
646
-  (0.1ms) rollback transaction
647
-  (0.1ms) begin transaction
648
- -------------------------------------------------
649
- Notee::ImagesControllerTest: test_should_get_edit
650
- -------------------------------------------------
651
-  (0.0ms) rollback transaction
652
-  (0.1ms) begin transaction
653
- ------------------------------------------------
654
- Notee::ImagesControllerTest: test_should_get_new
655
- ------------------------------------------------
656
-  (0.0ms) rollback transaction
657
-  (0.0ms) begin transaction
658
- --------------------------------------------------
659
- Notee::ImagesControllerTest: test_should_get_index
660
- --------------------------------------------------
661
-  (0.0ms) rollback transaction
662
-  (0.0ms) begin transaction
663
- ------------------------------------------------------
664
- Notee::ImagesControllerTest: test_should_destroy_image
665
- ------------------------------------------------------
666
-  (0.0ms) rollback transaction
667
-  (0.1ms) begin transaction
668
- -----------------------------------------------------
669
- Notee::ImagesControllerTest: test_should_create_image
670
- -----------------------------------------------------
671
-  (0.0ms) rollback transaction
672
-  (0.1ms) begin transaction
673
- -----------------------------------------------------
674
- Notee::ImagesControllerTest: test_should_update_image
675
- -----------------------------------------------------
676
-  (0.0ms) rollback transaction
677
-  (0.0ms) begin transaction
678
- ---------------------
679
- NoteeTest: test_truth
680
- ---------------------
681
-  (0.0ms) rollback transaction
682
-  (0.0ms) begin transaction
683
- ----------------------------------------------------------
684
- Notee::CategoriesControllerTest: test_should_show_category
685
- ----------------------------------------------------------
686
-  (0.1ms) rollback transaction
687
-  (0.1ms) begin transaction
688
- ------------------------------------------------------------
689
- Notee::CategoriesControllerTest: test_should_update_category
690
- ------------------------------------------------------------
691
-  (0.0ms) rollback transaction
692
-  (0.1ms) begin transaction
693
- ------------------------------------------------------
694
- Notee::CategoriesControllerTest: test_should_get_index
695
- ------------------------------------------------------
696
-  (0.0ms) rollback transaction
697
-  (0.1ms) begin transaction
698
- ------------------------------------------------------------
699
- Notee::CategoriesControllerTest: test_should_create_category
700
- ------------------------------------------------------------
701
-  (0.1ms) rollback transaction
702
-  (0.1ms) begin transaction
703
- ----------------------------------------------------
704
- Notee::CategoriesControllerTest: test_should_get_new
705
- ----------------------------------------------------
706
-  (0.0ms) rollback transaction
707
-  (0.1ms) begin transaction
708
- -----------------------------------------------------
709
- Notee::CategoriesControllerTest: test_should_get_edit
710
- -----------------------------------------------------
711
-  (0.0ms) rollback transaction
712
-  (0.1ms) begin transaction
713
- -------------------------------------------------------------
714
- Notee::CategoriesControllerTest: test_should_destroy_category
715
- -------------------------------------------------------------
716
-  (0.0ms) rollback transaction
717
-  (0.1ms) begin transaction
718
- ------------------------------------------------
719
- Notee::PostsControllerTest: test_should_get_edit
720
- ------------------------------------------------
721
-  (0.1ms) rollback transaction
722
-  (0.1ms) begin transaction
723
- ---------------------------------------------------
724
- Notee::PostsControllerTest: test_should_update_post
725
- ---------------------------------------------------
726
-  (0.1ms) rollback transaction
727
-  (0.2ms) begin transaction
728
- -------------------------------------------------
729
- Notee::PostsControllerTest: test_should_show_post
730
- -------------------------------------------------
731
-  (0.1ms) rollback transaction
732
-  (0.1ms) begin transaction
733
- ---------------------------------------------------
734
- Notee::PostsControllerTest: test_should_create_post
735
- ---------------------------------------------------
736
-  (0.1ms) rollback transaction
737
-  (0.3ms) begin transaction
738
- ----------------------------------------------------
739
- Notee::PostsControllerTest: test_should_destroy_post
740
- ----------------------------------------------------
741
-  (0.2ms) rollback transaction
742
-  (0.3ms) begin transaction
743
- -----------------------------------------------
744
- Notee::PostsControllerTest: test_should_get_new
745
- -----------------------------------------------
746
-  (0.1ms) rollback transaction
747
-  (0.2ms) begin transaction
748
- -------------------------------------------------
749
- Notee::PostsControllerTest: test_should_get_index
750
- -------------------------------------------------
751
-  (0.3ms) rollback transaction
752
-  (0.1ms) begin transaction
753
- --------------------------------------------
754
- Notee::TokenTest: test_generate_access_token
755
- --------------------------------------------
756
-  (0.2ms) rollback transaction
757
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
758
-  (0.1ms) begin transaction
759
- Fixture Delete (1.0ms) DELETE FROM "notee_categories"
760
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.581813', '2016-07-13 10:14:55.581813', 980190962)
761
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.581813', '2016-07-13 10:14:55.581813', 298486374)
762
-  (0.4ms) rollback transaction
763
-  (0.1ms) begin transaction
764
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
765
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.591846', '2016-07-13 10:14:55.591846', 980190962)
766
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.591846', '2016-07-13 10:14:55.591846', 298486374)
767
-  (0.4ms) rollback transaction
768
-  (0.1ms) begin transaction
769
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
770
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.597792', '2016-07-13 10:14:55.597792', 980190962)
771
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.597792', '2016-07-13 10:14:55.597792', 298486374)
772
-  (0.4ms) rollback transaction
773
-  (0.1ms) begin transaction
774
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
775
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.608071', '2016-07-13 10:14:55.608071', 980190962)
776
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.608071', '2016-07-13 10:14:55.608071', 298486374)
777
-  (0.4ms) rollback transaction
778
-  (0.1ms) begin transaction
779
- Fixture Delete (0.5ms) DELETE FROM "notee_categories"
780
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.614012', '2016-07-13 10:14:55.614012', 980190962)
781
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.614012', '2016-07-13 10:14:55.614012', 298486374)
782
-  (0.8ms) rollback transaction
783
-  (0.1ms) begin transaction
784
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
785
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.625476', '2016-07-13 10:14:55.625476', 980190962)
786
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.625476', '2016-07-13 10:14:55.625476', 298486374)
787
-  (0.4ms) rollback transaction
788
-  (0.0ms) begin transaction
789
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
790
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.630557', '2016-07-13 10:14:55.630557', 980190962)
791
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.630557', '2016-07-13 10:14:55.630557', 298486374)
792
-  (0.4ms) rollback transaction
793
-  (0.1ms) begin transaction
794
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
795
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.636312', '2016-07-13 10:14:55.636312', 980190962)
796
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.636312', '2016-07-13 10:14:55.636312', 298486374)
797
-  (0.5ms) rollback transaction
798
-  (0.1ms) begin transaction
799
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
800
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.641836', '2016-07-13 10:14:55.641836', 980190962)
801
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.641836', '2016-07-13 10:14:55.641836', 298486374)
802
-  (0.4ms) rollback transaction
803
-  (0.1ms) begin transaction
804
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
805
- Fixture Insert (1.6ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.649351', '2016-07-13 10:14:55.649351', 980190962)
806
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.649351', '2016-07-13 10:14:55.649351', 298486374)
807
-  (0.4ms) rollback transaction
808
-  (0.0ms) begin transaction
809
- Fixture Delete (0.1ms) DELETE FROM "notee_categories"
810
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.657529', '2016-07-13 10:14:55.657529', 980190962)
811
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.657529', '2016-07-13 10:14:55.657529', 298486374)
812
-  (0.4ms) rollback transaction
813
-  (0.1ms) begin transaction
814
- Fixture Delete (1.0ms) DELETE FROM "notee_categories"
815
- Fixture Insert (0.4ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.662026', '2016-07-13 10:14:55.662026', 980190962)
816
- Fixture Insert (0.7ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.662026', '2016-07-13 10:14:55.662026', 298486374)
817
-  (0.8ms) rollback transaction
818
-  (0.1ms) begin transaction
819
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
820
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.674627', '2016-07-13 10:14:55.674627', 980190962)
821
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.674627', '2016-07-13 10:14:55.674627', 298486374)
822
-  (0.4ms) rollback transaction
823
-  (0.1ms) begin transaction
824
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
825
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.680361', '2016-07-13 10:14:55.680361', 980190962)
826
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.680361', '2016-07-13 10:14:55.680361', 298486374)
827
-  (0.4ms) rollback transaction
828
-  (0.1ms) begin transaction
829
- Fixture Delete (0.3ms) DELETE FROM "notee_categories"
830
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.686310', '2016-07-13 10:14:55.686310', 980190962)
831
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.686310', '2016-07-13 10:14:55.686310', 298486374)
832
-  (0.4ms) rollback transaction
833
-  (0.1ms) begin transaction
834
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
835
- Fixture Insert (0.3ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.695867', '2016-07-13 10:14:55.695867', 980190962)
836
- Fixture Insert (0.5ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.695867', '2016-07-13 10:14:55.695867', 298486374)
837
-  (0.8ms) rollback transaction
838
-  (0.1ms) begin transaction
839
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
840
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.707728', '2016-07-13 10:14:55.707728', 980190962)
841
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.707728', '2016-07-13 10:14:55.707728', 298486374)
842
-  (0.4ms) rollback transaction
843
-  (0.1ms) begin transaction
844
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
845
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.713113', '2016-07-13 10:14:55.713113', 980190962)
846
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.713113', '2016-07-13 10:14:55.713113', 298486374)
847
-  (0.4ms) rollback transaction
848
-  (0.1ms) begin transaction
849
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
850
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.718077', '2016-07-13 10:14:55.718077', 980190962)
851
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.718077', '2016-07-13 10:14:55.718077', 298486374)
852
-  (0.4ms) rollback transaction
853
-  (0.1ms) begin transaction
854
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
855
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.723792', '2016-07-13 10:14:55.723792', 980190962)
856
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.723792', '2016-07-13 10:14:55.723792', 298486374)
857
-  (0.5ms) rollback transaction
858
-  (0.1ms) begin transaction
859
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
860
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.732208', '2016-07-13 10:14:55.732208', 980190962)
861
- Fixture Insert (0.2ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.732208', '2016-07-13 10:14:55.732208', 298486374)
862
-  (0.4ms) rollback transaction
863
-  (0.1ms) begin transaction
864
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
865
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.737500', '2016-07-13 10:14:55.737500', 980190962)
866
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.737500', '2016-07-13 10:14:55.737500', 298486374)
867
-  (0.4ms) rollback transaction
868
-  (0.0ms) begin transaction
869
- Fixture Delete (0.2ms) DELETE FROM "notee_categories"
870
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.742857', '2016-07-13 10:14:55.742857', 980190962)
871
- Fixture Insert (0.1ms) INSERT INTO "notee_categories" ("name", "slug", "parent_id", "status", "created_at", "updated_at", "id") VALUES ('MyString', 'MyString', 1, 1, '2016-07-13 10:14:55.742857', '2016-07-13 10:14:55.742857', 298486374)
872
-  (0.4ms) rollback transaction