localtower 1.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +133 -33
  3. data/app/assets/javascripts/localtower/application.js +30830 -0
  4. data/app/assets/javascripts/localtower/application.js.map +7 -0
  5. data/app/assets/stylesheets/localtower/application.css +1179 -0
  6. data/app/assets/stylesheets/src/application.css +68 -0
  7. data/app/controllers/localtower/pages_controller.rb +20 -35
  8. data/app/javascript/application.js +46 -0
  9. data/app/javascript/components/DarkSelect.js +115 -0
  10. data/app/javascript/components/ModernTooltip.js +26 -0
  11. data/app/javascript/components/NewMigrationForm.js +687 -0
  12. data/app/javascript/components/NewModelForm.js +432 -0
  13. data/app/javascript/components/data/Stores.js +294 -0
  14. data/app/views/layouts/localtower/application.html.erb +80 -66
  15. data/app/views/localtower/_migration.html.erb +30 -0
  16. data/app/views/localtower/pages/_alert_no_models.html.erb +1 -1
  17. data/app/views/localtower/pages/migrations.html.erb +24 -55
  18. data/app/views/localtower/pages/new_migration.html.erb +33 -96
  19. data/app/views/localtower/pages/new_model.html.erb +17 -83
  20. data/config/routes.rb +1 -1
  21. data/lib/localtower/engine.rb +9 -2
  22. data/lib/localtower/generators/migration.rb +218 -91
  23. data/lib/localtower/generators/model.rb +29 -20
  24. data/lib/localtower/generators/service_objects/insert_array.rb +5 -3
  25. data/lib/localtower/generators/service_objects/insert_defaults.rb +73 -3
  26. data/lib/localtower/generators/service_objects/insert_foreign_keys.rb +35 -0
  27. data/lib/localtower/generators/service_objects/insert_indexes.rb +41 -18
  28. data/lib/localtower/generators/service_objects/insert_nullable.rb +5 -3
  29. data/lib/localtower/status.rb +3 -1
  30. data/lib/localtower/tools.rb +20 -9
  31. data/lib/localtower/version.rb +1 -1
  32. data/lib/localtower.rb +0 -6
  33. data/public/com/favicon-64.png +0 -0
  34. data/public/com/twitter-cover-1.png +0 -0
  35. data/public/com/twitter-cover-2.png +0 -0
  36. data/public/fonts/Circular/CircularStd-Black.otf +0 -0
  37. data/public/fonts/Circular/CircularStd-BlackItalic.otf +0 -0
  38. data/public/fonts/Circular/CircularStd-Bold.otf +0 -0
  39. data/public/fonts/Circular/CircularStd-BoldItalic.otf +0 -0
  40. data/public/fonts/Circular/CircularStd-Book.otf +0 -0
  41. data/public/fonts/Circular/CircularStd-BookItalic.otf +0 -0
  42. data/public/fonts/Circular/CircularStd-Light Italic.otf +0 -0
  43. data/public/fonts/Circular/CircularStd-Light.otf +0 -0
  44. data/public/fonts/Circular/CircularStd-Medium.otf +0 -0
  45. data/public/fonts/Circular/CircularStd-MediumItalic.otf +0 -0
  46. data/public/fonts/Circular/Read Me.txt +5 -0
  47. data/public/fonts/Circular/www.dfonts.org.url +2 -0
  48. data/public/screenshots/v0.1.1/1_schema.png +0 -0
  49. data/public/screenshots/v0.1.1/2_models_1.png +0 -0
  50. data/public/screenshots/v0.1.1/2_models_2.png +0 -0
  51. data/public/screenshots/v0.1.1/3_relations.png +0 -0
  52. data/public/screenshots/v0.1.1/4_migrations.png +0 -0
  53. data/public/screenshots/v0.1.6/1_schema.png +0 -0
  54. data/public/screenshots/v0.1.6/2_models_1.png +0 -0
  55. data/public/screenshots/v0.1.6/3_relations.png +0 -0
  56. data/public/screenshots/v0.1.6/4_migrations.png +0 -0
  57. data/public/screenshots/v0.1.6/5_capture.png +0 -0
  58. data/public/screenshots/v1.0.0/migrations.png +0 -0
  59. data/public/screenshots/v1.0.0/models.png +0 -0
  60. data/public/screenshots/v1.0.0/new_migration.png +0 -0
  61. data/public/screenshots/v1.0.0/new_model.png +0 -0
  62. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.30.jpg +0 -0
  63. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.42.jpg +0 -0
  64. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.54.jpg +0 -0
  65. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.21.jpg +0 -0
  66. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.28.jpg +0 -0
  67. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.51.jpg +0 -0
  68. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.49.09.jpg +0 -0
  69. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.04.jpg +0 -0
  70. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.11.jpg +0 -0
  71. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.19.jpg +0 -0
  72. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.51.47.jpg +0 -0
  73. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.51.48.jpg +0 -0
  74. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.02.jpg +0 -0
  75. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.18.jpg +0 -0
  76. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.26.jpg +0 -0
  77. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.38.jpg +0 -0
  78. data/public/screenshots/v2.0.0/migrations.png +0 -0
  79. data/public/screenshots/v2.0.0/new_migration.png +0 -0
  80. data/public/screenshots/v2.0.0/new_model.png +0 -0
  81. data/public/vendor/jquery-3.7.1.min.js +2 -0
  82. data/public/vendor/lucide.min.js +12 -0
  83. data/public/vendor/monokai-sublime.css +80 -0
  84. data/public/vendor/rails-ujs.min.js +8 -0
  85. data/spec/dummy/Gemfile +1 -1
  86. data/spec/dummy/Gemfile.lock +146 -104
  87. data/spec/dummy/config/database.yml +4 -6
  88. data/spec/dummy/config/puma.rb +1 -1
  89. data/spec/dummy/db/schema.rb +2 -39
  90. data/spec/dummy/lib/tasks/reset.rake +16 -0
  91. data/spec/dummy/log/development.log +22746 -15994
  92. data/spec/dummy/log/localtower.log +747 -1891
  93. data/spec/dummy/log/test.log +1145 -0
  94. data/spec/dummy/tmp/cache/sessions/localtower/726/FE1/_session_id%3A2%3A%3A69d6764784f832ea25700ea2f242210f3f8d94b48912b0f09ffc44311f0376eb +0 -0
  95. data/spec/dummy/tmp/cache/sessions/localtower/77E/121/_session_id%3A2%3A%3A0b3c1fe7154461ba023ba6c81dd1b999348757880b505f4b082faed263a627f9 +1 -0
  96. data/spec/dummy/tmp/cache/sessions/localtower/7EB/8A1/_session_id%3A2%3A%3Af88237c1d157546a5dcde894fd6c1410162a8eba318748d4ac573ee75e40df16 +0 -0
  97. data/spec/dummy/tmp/local_secret.txt +1 -0
  98. data/spec/factories/migration.rb +77 -40
  99. data/spec/factories/model.rb +46 -26
  100. data/spec/lib/localtower/generators/migration_spec.rb +16 -24
  101. data/spec/lib/localtower/generators/model_spec.rb +71 -8
  102. data/spec/lib/localtower/generators/service_objects/insert_array_spec.rb +1 -1
  103. data/spec/lib/localtower/generators/service_objects/insert_defaults_spec.rb +1 -1
  104. data/spec/lib/localtower/generators/service_objects/insert_foreign_keys_spec.rb +101 -0
  105. data/spec/lib/localtower/generators/service_objects/insert_indexes_spec.rb +1 -1
  106. data/spec/lib/localtower/generators/service_objects/insert_nullable_spec.rb +2 -2
  107. data/spec/spec_helper.rb +2 -3
  108. metadata +107 -238
  109. data/app/views/localtower/pages/models.html.erb +0 -63
  110. data/public/css/app.css +0 -55
  111. data/public/js/app.js +0 -337
  112. data/public/light-bootstrap-dashboard-master/assets/css/animate.min.css +0 -6
  113. data/public/light-bootstrap-dashboard-master/assets/css/bootstrap.min.css +0 -5
  114. data/public/light-bootstrap-dashboard-master/assets/css/demo.css +0 -61
  115. data/public/light-bootstrap-dashboard-master/assets/css/light-bootstrap-dashboard.css +0 -2789
  116. data/public/light-bootstrap-dashboard-master/assets/css/pe-icon-7-stroke.css +0 -632
  117. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.eot +0 -0
  118. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.svg +0 -212
  119. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.ttf +0 -0
  120. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.woff +0 -0
  121. data/public/light-bootstrap-dashboard-master/assets/img/default-avatar.png +0 -0
  122. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-0.jpg +0 -0
  123. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-1.jpg +0 -0
  124. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-2.jpg +0 -0
  125. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-3.jpg +0 -0
  126. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-4.jpg +0 -0
  127. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-5.jpg +0 -0
  128. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-6.jpg +0 -0
  129. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-7.jpg +0 -0
  130. data/public/light-bootstrap-dashboard-master/assets/img/faces/tim_vector.jpe +0 -0
  131. data/public/light-bootstrap-dashboard-master/assets/img/favicon.ico +0 -0
  132. data/public/light-bootstrap-dashboard-master/assets/img/loading-bubbles.svg +0 -14
  133. data/public/light-bootstrap-dashboard-master/assets/img/mask.png +0 -0
  134. data/public/light-bootstrap-dashboard-master/assets/img/new_logo.png +0 -0
  135. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-1.jpg +0 -0
  136. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-2.jpg +0 -0
  137. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-3.jpg +0 -0
  138. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-4.jpg +0 -0
  139. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-5.jpg +0 -0
  140. data/public/light-bootstrap-dashboard-master/assets/img/tim_80x80.png +0 -0
  141. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-checkbox-radio-switch.js +0 -502
  142. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-notify.js +0 -404
  143. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-select.js +0 -438
  144. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap.min.js +0 -7
  145. data/public/light-bootstrap-dashboard-master/assets/js/chartist.min.js +0 -9
  146. data/public/light-bootstrap-dashboard-master/assets/js/demo.js +0 -152
  147. data/public/light-bootstrap-dashboard-master/assets/js/jquery-1.10.2.js +0 -9789
  148. data/public/light-bootstrap-dashboard-master/assets/js/light-bootstrap-dashboard.js +0 -179
  149. data/public/logo-localtower-white-300.png +0 -0
  150. data/public/logo-localtower-white.png +0 -0
  151. data/public/logo-localtower.png +0 -0
  152. data/public/vendor/font-awesome.min.css +0 -4
  153. data/public/vendor/highlight-js-default.min.css +0 -9
  154. data/spec/dummy/app/models/post.rb +0 -3
  155. data/spec/dummy/app/models/user.rb +0 -3
  156. data/spec/dummy/db/migrate/20230119221452_create_users.rb +0 -14
  157. data/spec/dummy/db/migrate/20230119221751_change_users_at1674166670.rb +0 -7
  158. data/spec/dummy/db/migrate/20230119222054_create_posts.rb +0 -11
  159. data/spec/dummy/db/migrate/20230119222106_change_posts_at1674166865.rb +0 -5
  160. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/-Y/-YOiiBKqc2UODHFjctm8xc7xFoZaL7zOjWQj6qQ2wyE.cache +0 -1
  161. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/-d/-dwueM4vmPt8L51S3jeSyg_AjGDcj0GUN6pDpCA1gCg.cache +0 -3
  162. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/0g/0gaJnJQdtd2ACbihXxn8OnjLWlDjnQ_WxfgOpbiLzhg.cache +0 -1
  163. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/0r/0rFCsCV9kZnEYtZZ6sfig8329OU31bqjecDFqSVank8.cache +0 -1
  164. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/1J/1J2k_CpnQE3d-PZAQwOVGQALGkta4qVvhdsKjgG0e4Q.cache +0 -0
  165. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/2p/2pYVH2Z_syqh6ok8QYxJNKxXpx1Iwppf6JGElZI0gpw.cache +0 -0
  166. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/3W/3WBmqd-2V6q5N-jvbyp-tlcfn3aHYMwBppbOUm7x4qg.cache +0 -1
  167. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/4K/4KFPlHkhdDW0riGUmlbaR-kmDz6JUnQvY6fwW8qsdaE.cache +0 -3
  168. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/6x/6xMeRWmLpNK_flx6-JA3KazvUxSCxyPxHv9Zm3eC26Q.cache +0 -1
  169. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/7d/7dNqI_dCDJLJmI1oM4xwFp9nRRNOem-4P4OD7PMyz2E.cache +0 -0
  170. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/8X/8XquhxVcp5A8QquLtxO8NgKTMJch0eqQmzFmRGIZP6I.cache +0 -1
  171. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ah/AhdfXXtU63kXS4TnsH2Vi1yWgVkIEeV8Z8XA68hrNQc.cache +0 -0
  172. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Bt/BtAePnwLSGw82xUGI7wuhWDfuwarOQVS91YqCsweMcs.cache +0 -0
  173. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Bx/BxzoG0KxeNLac4xTNeJv3qfeytbNBw58xj2zD-xdbrE.cache +0 -2
  174. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/CC/CCD0ROPX0yxHwNpVZmuP8ZNtgQpaVCMXpdzC0Wb5n24.cache +0 -1
  175. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/DS/DS43oxBg6K5PMWLn2mTy_4EnxI03ehHkxpjV7NCi8yM.cache +0 -1
  176. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Do/Do83AoOat5W-c1g7piDGy2GMmffsY6JY0Qfuh5PY3GM.cache +0 -2
  177. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/EI/EI0Nxk-VRATWstMuVCVc0_GdYlQ-a0dx6n2g0l3vIik.cache +0 -0
  178. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/EN/ENhJnzJAU2IK-7aHqubj9N8Jo_UTmjG_VEQqyIkolQ8.cache +0 -1
  179. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Fc/FcS6VUHN3Bd4pHGqd5NHA8jA4OLwWrU94s3b4GGxX9c.cache +0 -1
  180. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/G0/G0kukI-r0q0Vbrg6e_jnYJoYcOX8K__h-mwKbCf4twE.cache +0 -0
  181. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/I1/I1Jw08-mz8xzgrgi6giCzpf1UmzGTSbl4eJEw4DAoJM.cache +0 -1
  182. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/IV/IVOO1dXBmgjieDk__g57p6aYt0Z3CmfTa32jhegoyko.cache +0 -3
  183. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/JY/JYPmv5WP4wxdI9EKEEPkK_fVtqeSLfmint_5E8fQLQ8.cache +0 -1
  184. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/MX/MXI3KxaQPZGImSvCNZ_TbQVruWCJ3E0xiVxza1ZCAjM.cache +0 -1
  185. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/OU/OUoioCqXALK909jXPV3VSyCJIdNC7bsogUfdnRTpc5o.cache +0 -1
  186. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/PH/PHjtqNLUPAUDiSlu5AbPjlIo20mOGNm0uNjMLhX2NvM.cache +0 -0
  187. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/RC/RC9vfALY5K634pTeau0BAhTHl7d5_5yA3tM-QTLiKtI.cache +0 -0
  188. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/RG/RG1PrmlixwaUlG8BV0kcm_3F7OQekxsrLYjBdf403-k.cache +0 -2
  189. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ut/UtoMO6n6FHTpRCGk9VfxlfTI2Ao2GYJ_6kMzx3B9VH8.cache +0 -1
  190. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/VE/VExnbpDk3LxYdPk3htUrZQXPI8NK_zlKtSFfVXJlxU4.cache +0 -1
  191. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Wm/WmKTjykiU-Tx_Faf5zduEeEQ-DozAs5omKToM2l1cZM.cache +0 -0
  192. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/X-/X-KjhDPd0nI155N_FaxFSgaOiYo0_ytqlmkBlLM7ayw.cache +0 -1
  193. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/XX/XXVhj-O91tJ5c8pz7DQlTABOv8TIRVg5haw9VOq9HuI.cache +0 -1
  194. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/YC/YCiifo5NCMwDChFqYFiV4EaYEx8hy3Efle1PsGbIdak.cache +0 -1
  195. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ya/YayMISAqD-Y3vBFywwKrXbUovGf5o77HUF5s8mnQgO0.cache +0 -0
  196. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Zl/Zl-NEb0aDLmZ9gN4gdY1OYlbUXD4JhkFY_y23m55zmo.cache +0 -0
  197. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/_h/_hnjPptBeD3GP5B0iJR6pvyVkiMiq-o2TxaYmGf9KJo.cache +0 -3
  198. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/_p/_poEF6QbTPYJiQCFGoXxIXjmvcn6T0I87ElzJGHguk0.cache +0 -1
  199. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/aa/aaSj2zt8ddc87nZqTpOI9gRCKVnoalXKFBww7t4t3Kg.cache +0 -0
  200. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/bZ/bZHWUkrOLp0WM_Ogo36Qjt4cxDt-rOFgtcj4LNB-BVE.cache +0 -1
  201. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/cP/cPSNG_663TNT944Rke919luRS6FtpMwVc_7aDph645w.cache +0 -1
  202. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ce/ceq8fcZGIoqWrCl9vrCRrywEdx42iy9PrGG9CwFSIF4.cache +0 -0
  203. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/cl/cljhP0Jc018nLnG1rpdg-FUf6mlIqrQYvXTNXTNG9Bw.cache +0 -0
  204. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/dm/dmod3fTZdoKso2FGM5RTQtb4kTB6vywsiXLWDygYFN4.cache +0 -1
  205. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/dy/dySDGcUTqlKx2MTvOmIEP-WzhyhCfU5xhN9qgxbz3rI.cache +0 -0
  206. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gQ/gQYdmEzbLjTcFCnsfzXzEmeminOchF263snAk3IvXM0.cache +0 -1
  207. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gh/ghvuMAqccBGljlmEaI3Gt5tH5rEg6hseKYMYfRMkHdY.cache +0 -1
  208. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gt/gt8QC7k92A4hXA3HlCpQulW73tqd6x63I3uT-YrGMj0.cache +0 -1
  209. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/hf/hfVg-y7dPSQKbb7V3I7M5w7IpOhDiIB2H31d2tmbZMU.cache +0 -0
  210. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/iF/iFLwyhZIu1Jxm77NUT2qWeTDMmyELW4U85t9rGE_KVg.cache +0 -0
  211. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/kF/kFlIcBBnSyKE00OjpM90pqSn93mLMUv9esz86nrO-Cs.cache +0 -1
  212. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ma/MazNt_5OaYexRuZnccZZ_7AONlxn1a4W3KdWyHyBdws.cache +0 -0
  213. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ma/ma3w08gnDTeqwY2-C9BlToxA6-AS8bvXlu-nBiz0UYs.cache +0 -1
  214. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +0 -2
  215. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +0 -2
  216. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/pv/pv6tV3CDkIAmLXdU8EPLlNEkXAKJPufVD4VP30o4fWo.cache +0 -0
  217. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/qP/qPmv5snMrDw830S6hSICDcnIy7kVEWoFKXhGKT38lG4.cache +0 -2
  218. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/sY/sYvTb1uPWWmnHJNXKuW_xSco-aUb-rN2f0J35zSIzuc.cache +0 -1
  219. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/su/suQ_jjDxRiIn4VEqFJYKaBWJILaeGKBvoTv49XNX0vo.cache +0 -1
  220. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/u8/u8IrW5IIQ7espwk2Vpk23zheL9YZA0tnbKq9X7E-WA0.cache +0 -1
  221. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/wh/whzETExjcZCkn4msasD2aylgfhfpKPZrNxTkY-SOIDg.cache +0 -2
  222. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache +0 -2
  223. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/y6/y6oxsJD3pAY9ph1_5M-77uiEjTVw8BheLZNygCKPm1g.cache +0 -1
  224. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/yH/yHZ-a1J23ZCf2n5mEHINMz23Iec2cLGTKauW7k4yGTE.cache +0 -0
  225. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/z7/z7KfUWYoSaGq8tQ5mbHwyfXyT3Pa4FWKJswHcIdJuds.cache +0 -1
  226. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/zu/zuExWc5WHxeOUPZUKHl9a9ZRmN50g7jMOD28macn6M0.cache +0 -0
  227. data/spec/dummy/tmp/pids/server.pid +0 -1
@@ -0,0 +1,1145 @@
1
+
2
+  (0.8ms) select * from schema_migrations;
3
+  (1.0ms) select * from schema_migrations;
4
+  (0.6ms) select * from schema_migrations;
5
+  (0.5ms) select * from schema_migrations;
6
+  (0.9ms) select * from schema_migrations;
7
+  (0.6ms) select * from schema_migrations;
8
+  (0.8ms) select * from schema_migrations;
9
+  (0.8ms) select * from schema_migrations;
10
+  (0.8ms) select * from schema_migrations;
11
+  (1.1ms) select * from schema_migrations;
12
+  (0.9ms) select * from schema_migrations;
13
+  (1.0ms) select * from schema_migrations;
14
+  (0.9ms) select * from schema_migrations;
15
+  (0.3ms) select * from schema_migrations;
16
+  (7.1ms) select * from schema_migrations;
17
+  (1.6ms) select * from schema_migrations;
18
+  (0.2ms) select * from schema_migrations;
19
+  (1.6ms) select * from schema_migrations;
20
+  (0.4ms) select * from schema_migrations;
21
+  (1.5ms) select * from schema_migrations;
22
+  (1.5ms) select * from schema_migrations;
23
+  (0.8ms) select * from schema_migrations;
24
+  (0.9ms) select * from schema_migrations;
25
+  (0.6ms) select * from schema_migrations;
26
+  (0.7ms) select * from schema_migrations;
27
+  (2.0ms) select * from schema_migrations;
28
+  (1.4ms) select * from schema_migrations;
29
+  (0.8ms) select * from schema_migrations;
30
+  (0.8ms) select * from schema_migrations;
31
+  (0.6ms) select * from schema_migrations;
32
+  (0.5ms) select * from schema_migrations;
33
+  (0.6ms) select * from schema_migrations;
34
+  (0.6ms) select * from schema_migrations;
35
+  (0.6ms) select * from schema_migrations;
36
+  (0.8ms) select * from schema_migrations;
37
+  (0.5ms) select * from schema_migrations;
38
+  (0.4ms) select * from schema_migrations;
39
+  (0.5ms) select * from schema_migrations;
40
+  (0.5ms) select * from schema_migrations;
41
+  (3.4ms) select * from schema_migrations;
42
+  (0.4ms) select * from schema_migrations;
43
+  (2.2ms) select * from schema_migrations;
44
+  (0.9ms) select * from schema_migrations;
45
+  (1.1ms) select * from schema_migrations;
46
+  (1.3ms) select * from schema_migrations;
47
+  (1.0ms) select * from schema_migrations;
48
+  (0.8ms) select * from schema_migrations;
49
+  (1.4ms) select * from schema_migrations;
50
+  (1.1ms) select * from schema_migrations;
51
+  (2.1ms) select * from schema_migrations;
52
+  (0.9ms) select * from schema_migrations;
53
+  (0.5ms) select * from schema_migrations;
54
+  (0.5ms) select * from schema_migrations;
55
+  (1.3ms) select * from schema_migrations;
56
+  (0.6ms) select * from schema_migrations;
57
+  (0.6ms) select * from schema_migrations;
58
+  (0.7ms) select * from schema_migrations;
59
+  (0.4ms) select * from schema_migrations;
60
+  (0.5ms) select * from schema_migrations;
61
+  (0.4ms) select * from schema_migrations;
62
+  (0.3ms) select * from schema_migrations;
63
+  (0.3ms) select * from schema_migrations;
64
+  (0.3ms) select * from schema_migrations;
65
+  (0.3ms) select * from schema_migrations;
66
+  (0.3ms) select * from schema_migrations;
67
+  (0.3ms) select * from schema_migrations;
68
+  (0.3ms) select * from schema_migrations;
69
+  (0.3ms) select * from schema_migrations;
70
+  (0.3ms) select * from schema_migrations;
71
+  (0.3ms) select * from schema_migrations;
72
+  (0.3ms) select * from schema_migrations;
73
+  (0.5ms) select * from schema_migrations;
74
+  (0.3ms) select * from schema_migrations;
75
+  (0.2ms) select * from schema_migrations;
76
+  (0.3ms) select * from schema_migrations;
77
+  (0.6ms) select * from schema_migrations;
78
+  (0.3ms) select * from schema_migrations;
79
+  (0.2ms) select * from schema_migrations;
80
+  (0.2ms) select * from schema_migrations;
81
+  (0.2ms) select * from schema_migrations;
82
+  (0.3ms) select * from schema_migrations;
83
+  (0.3ms) select * from schema_migrations;
84
+  (0.3ms) select * from schema_migrations;
85
+  (0.2ms) select * from schema_migrations;
86
+  (0.2ms) select * from schema_migrations;
87
+  (0.2ms) select * from schema_migrations;
88
+  (0.2ms) select * from schema_migrations;
89
+  (0.2ms) select * from schema_migrations;
90
+  (0.3ms) select * from schema_migrations;
91
+  (0.3ms) select * from schema_migrations;
92
+  (0.4ms) select * from schema_migrations;
93
+  (0.3ms) select * from schema_migrations;
94
+  (1.5ms) select * from schema_migrations;
95
+  (1.7ms) select * from schema_migrations;
96
+  (0.9ms) select * from schema_migrations;
97
+  (1.5ms) select * from schema_migrations;
98
+  (0.9ms) select * from schema_migrations;
99
+  (6.0ms) select * from schema_migrations;
100
+  (0.7ms) select * from schema_migrations;
101
+  (1.6ms) select * from schema_migrations;
102
+  (0.9ms) select * from schema_migrations;
103
+  (0.6ms) select * from schema_migrations;
104
+  (4.1ms) select * from schema_migrations;
105
+  (2.6ms) select * from schema_migrations;
106
+  (0.7ms) select * from schema_migrations;
107
+  (0.9ms) select * from schema_migrations;
108
+  (1.3ms) select * from schema_migrations;
109
+  (0.8ms) select * from schema_migrations;
110
+  (0.9ms) select * from schema_migrations;
111
+  (0.5ms) select * from schema_migrations;
112
+  (0.6ms) select * from schema_migrations;
113
+  (0.6ms) select * from schema_migrations;
114
+  (0.5ms) select * from schema_migrations;
115
+  (0.4ms) select * from schema_migrations;
116
+  (0.4ms) select * from schema_migrations;
117
+  (0.4ms) select * from schema_migrations;
118
+  (0.3ms) select * from schema_migrations;
119
+  (0.5ms) select * from schema_migrations;
120
+  (0.4ms) select * from schema_migrations;
121
+  (0.2ms) select * from schema_migrations;
122
+  (0.3ms) select * from schema_migrations;
123
+  (0.3ms) select * from schema_migrations;
124
+  (0.2ms) select * from schema_migrations;
125
+  (0.3ms) select * from schema_migrations;
126
+  (0.3ms) select * from schema_migrations;
127
+  (0.3ms) select * from schema_migrations;
128
+  (0.2ms) select * from schema_migrations;
129
+  (0.2ms) select * from schema_migrations;
130
+  (0.3ms) select * from schema_migrations;
131
+  (0.2ms) select * from schema_migrations;
132
+  (0.3ms) select * from schema_migrations;
133
+  (0.2ms) select * from schema_migrations;
134
+  (0.3ms) select * from schema_migrations;
135
+  (0.2ms) select * from schema_migrations;
136
+  (0.2ms) select * from schema_migrations;
137
+  (0.2ms) select * from schema_migrations;
138
+  (0.2ms) select * from schema_migrations;
139
+  (0.3ms) select * from schema_migrations;
140
+  (0.3ms) select * from schema_migrations;
141
+  (0.2ms) select * from schema_migrations;
142
+  (0.2ms) select * from schema_migrations;
143
+  (0.2ms) select * from schema_migrations;
144
+  (0.3ms) select * from schema_migrations;
145
+  (0.4ms) select * from schema_migrations;
146
+  (1.5ms) select * from schema_migrations;
147
+  (0.6ms) select * from schema_migrations;
148
+  (3.7ms) select * from schema_migrations;
149
+  (2.0ms) select * from schema_migrations;
150
+  (0.9ms) select * from schema_migrations;
151
+  (0.9ms) select * from schema_migrations;
152
+  (0.6ms) select * from schema_migrations;
153
+  (0.7ms) select * from schema_migrations;
154
+  (0.8ms) select * from schema_migrations;
155
+  (0.6ms) select * from schema_migrations;
156
+  (0.8ms) select * from schema_migrations;
157
+  (0.6ms) select * from schema_migrations;
158
+  (0.9ms) select * from schema_migrations;
159
+  (0.9ms) select * from schema_migrations;
160
+  (1.2ms) select * from schema_migrations;
161
+  (0.3ms) select * from schema_migrations;
162
+  (1.4ms) select * from schema_migrations;
163
+  (0.7ms) select * from schema_migrations;
164
+  (0.7ms) select * from schema_migrations;
165
+  (0.6ms) select * from schema_migrations;
166
+  (0.3ms) select * from schema_migrations;
167
+  (0.3ms) select * from schema_migrations;
168
+  (0.3ms) select * from schema_migrations;
169
+  (0.2ms) select * from schema_migrations;
170
+  (3.0ms) select * from schema_migrations;
171
+  (5.8ms) select * from schema_migrations;
172
+  (3.4ms) select * from schema_migrations;
173
+  (1.0ms) select * from schema_migrations;
174
+  (0.6ms) select * from schema_migrations;
175
+  (1.6ms) select * from schema_migrations;
176
+  (2.2ms) select * from schema_migrations;
177
+  (4.7ms) select * from schema_migrations;
178
+  (2.3ms) select * from schema_migrations;
179
+  (0.3ms) select * from schema_migrations;
180
+  (0.3ms) select * from schema_migrations;
181
+  (0.3ms) select * from schema_migrations;
182
+  (0.3ms) select * from schema_migrations;
183
+  (0.2ms) select * from schema_migrations;
184
+  (1.7ms) select * from schema_migrations;
185
+  (0.7ms) select * from schema_migrations;
186
+  (1.4ms) select * from schema_migrations;
187
+  (0.6ms) select * from schema_migrations;
188
+  (1.7ms) select * from schema_migrations;
189
+  (0.8ms) select * from schema_migrations;
190
+  (0.6ms) select * from schema_migrations;
191
+  (0.7ms) select * from schema_migrations;
192
+  (0.5ms) select * from schema_migrations;
193
+  (0.5ms) select * from schema_migrations;
194
+  (0.6ms) select * from schema_migrations;
195
+  (1.1ms) select * from schema_migrations;
196
+  (0.9ms) select * from schema_migrations;
197
+  (0.6ms) select * from schema_migrations;
198
+  (0.5ms) select * from schema_migrations;
199
+  (0.8ms) select * from schema_migrations;
200
+  (0.8ms) select * from schema_migrations;
201
+  (0.5ms) select * from schema_migrations;
202
+  (1.2ms) select * from schema_migrations;
203
+  (0.5ms) select * from schema_migrations;
204
+  (0.4ms) select * from schema_migrations;
205
+  (0.7ms) select * from schema_migrations;
206
+  (0.5ms) select * from schema_migrations;
207
+  (0.4ms) select * from schema_migrations;
208
+  (0.5ms) select * from schema_migrations;
209
+  (0.5ms) select * from schema_migrations;
210
+  (0.6ms) select * from schema_migrations;
211
+  (0.7ms) select * from schema_migrations;
212
+  (0.5ms) select * from schema_migrations;
213
+  (0.4ms) select * from schema_migrations;
214
+  (0.5ms) select * from schema_migrations;
215
+  (0.4ms) select * from schema_migrations;
216
+  (0.6ms) select * from schema_migrations;
217
+  (0.5ms) select * from schema_migrations;
218
+  (0.5ms) select * from schema_migrations;
219
+  (0.5ms) select * from schema_migrations;
220
+  (0.4ms) select * from schema_migrations;
221
+  (0.5ms) select * from schema_migrations;
222
+  (0.6ms) select * from schema_migrations;
223
+  (0.4ms) select * from schema_migrations;
224
+  (0.4ms) select * from schema_migrations;
225
+  (6.0ms) select * from schema_migrations;
226
+  (0.8ms) select * from schema_migrations;
227
+  (0.5ms) select * from schema_migrations;
228
+  (0.6ms) select * from schema_migrations;
229
+  (0.5ms) select * from schema_migrations;
230
+  (0.4ms) select * from schema_migrations;
231
+  (0.4ms) select * from schema_migrations;
232
+  (0.7ms) select * from schema_migrations;
233
+  (0.6ms) select * from schema_migrations;
234
+  (0.4ms) select * from schema_migrations;
235
+  (0.4ms) select * from schema_migrations;
236
+  (0.4ms) select * from schema_migrations;
237
+  (0.9ms) select * from schema_migrations;
238
+  (1.0ms) select * from schema_migrations;
239
+  (0.7ms) select * from schema_migrations;
240
+  (0.7ms) select * from schema_migrations;
241
+  (0.4ms) select * from schema_migrations;
242
+  (0.4ms) select * from schema_migrations;
243
+  (0.5ms) select * from schema_migrations;
244
+  (0.7ms) select * from schema_migrations;
245
+  (0.5ms) select * from schema_migrations;
246
+  (0.5ms) select * from schema_migrations;
247
+  (0.6ms) select * from schema_migrations;
248
+  (0.5ms) select * from schema_migrations;
249
+  (0.5ms) select * from schema_migrations;
250
+  (0.4ms) select * from schema_migrations;
251
+  (0.5ms) select * from schema_migrations;
252
+  (0.6ms) select * from schema_migrations;
253
+  (0.5ms) select * from schema_migrations;
254
+  (0.5ms) select * from schema_migrations;
255
+  (0.5ms) select * from schema_migrations;
256
+  (0.5ms) select * from schema_migrations;
257
+  (0.4ms) select * from schema_migrations;
258
+  (0.4ms) select * from schema_migrations;
259
+  (0.5ms) select * from schema_migrations;
260
+  (0.5ms) select * from schema_migrations;
261
+  (0.3ms) select * from schema_migrations;
262
+  (0.5ms) select * from schema_migrations;
263
+  (0.5ms) select * from schema_migrations;
264
+  (0.5ms) select * from schema_migrations;
265
+  (0.4ms) select * from schema_migrations;
266
+  (0.6ms) select * from schema_migrations;
267
+  (0.3ms) select * from schema_migrations;
268
+  (0.4ms) select * from schema_migrations;
269
+  (0.5ms) select * from schema_migrations;
270
+  (0.5ms) select * from schema_migrations;
271
+  (0.4ms) select * from schema_migrations;
272
+  (0.4ms) select * from schema_migrations;
273
+  (0.4ms) select * from schema_migrations;
274
+  (0.4ms) select * from schema_migrations;
275
+  (0.3ms) select * from schema_migrations;
276
+  (0.3ms) select * from schema_migrations;
277
+  (0.3ms) select * from schema_migrations;
278
+  (0.3ms) select * from schema_migrations;
279
+  (0.2ms) select * from schema_migrations;
280
+  (0.3ms) select * from schema_migrations;
281
+  (0.3ms) select * from schema_migrations;
282
+  (0.3ms) select * from schema_migrations;
283
+  (0.4ms) select * from schema_migrations;
284
+  (0.3ms) select * from schema_migrations;
285
+  (0.4ms) select * from schema_migrations;
286
+  (0.4ms) select * from schema_migrations;
287
+  (0.4ms) select * from schema_migrations;
288
+  (6.2ms) select * from schema_migrations;
289
+  (1.6ms) select * from schema_migrations;
290
+  (0.6ms) select * from schema_migrations;
291
+  (0.4ms) select * from schema_migrations;
292
+  (1.7ms) select * from schema_migrations;
293
+  (0.5ms) select * from schema_migrations;
294
+  (0.4ms) select * from schema_migrations;
295
+  (0.5ms) select * from schema_migrations;
296
+  (0.6ms) select * from schema_migrations;
297
+  (0.5ms) select * from schema_migrations;
298
+  (0.6ms) select * from schema_migrations;
299
+  (0.5ms) select * from schema_migrations;
300
+  (0.4ms) select * from schema_migrations;
301
+  (1.2ms) select * from schema_migrations;
302
+  (1.3ms) select * from schema_migrations;
303
+  (1.0ms) select * from schema_migrations;
304
+  (0.3ms) select * from schema_migrations;
305
+  (1.1ms) select * from schema_migrations;
306
+  (0.7ms) select * from schema_migrations;
307
+  (1.6ms) select * from schema_migrations;
308
+  (0.5ms) select * from schema_migrations;
309
+  (0.4ms) select * from schema_migrations;
310
+  (0.5ms) select * from schema_migrations;
311
+  (0.4ms) select * from schema_migrations;
312
+  (0.4ms) select * from schema_migrations;
313
+  (1.9ms) select * from schema_migrations;
314
+  (0.7ms) select * from schema_migrations;
315
+  (0.5ms) select * from schema_migrations;
316
+  (0.5ms) select * from schema_migrations;
317
+  (0.6ms) select * from schema_migrations;
318
+  (0.5ms) select * from schema_migrations;
319
+  (0.5ms) select * from schema_migrations;
320
+  (0.5ms) select * from schema_migrations;
321
+  (0.5ms) select * from schema_migrations;
322
+  (0.6ms) select * from schema_migrations;
323
+  (0.5ms) select * from schema_migrations;
324
+  (0.6ms) select * from schema_migrations;
325
+  (0.6ms) select * from schema_migrations;
326
+  (0.9ms) select * from schema_migrations;
327
+  (1.5ms) select * from schema_migrations;
328
+  (1.0ms) select * from schema_migrations;
329
+  (1.3ms) select * from schema_migrations;
330
+  (0.4ms) select * from schema_migrations;
331
+  (2.1ms) select * from schema_migrations;
332
+  (1.2ms) select * from schema_migrations;
333
+  (0.5ms) select * from schema_migrations;
334
+  (1.9ms) select * from schema_migrations;
335
+  (0.5ms) select * from schema_migrations;
336
+  (0.5ms) select * from schema_migrations;
337
+  (0.6ms) select * from schema_migrations;
338
+  (0.8ms) select * from schema_migrations;
339
+  (0.7ms) select * from schema_migrations;
340
+  (0.8ms) select * from schema_migrations;
341
+  (0.6ms) select * from schema_migrations;
342
+  (0.5ms) select * from schema_migrations;
343
+  (0.5ms) select * from schema_migrations;
344
+  (0.6ms) select * from schema_migrations;
345
+  (0.5ms) select * from schema_migrations;
346
+  (0.7ms) select * from schema_migrations;
347
+  (0.8ms) select * from schema_migrations;
348
+  (0.6ms) select * from schema_migrations;
349
+  (5.8ms) select * from schema_migrations;
350
+  (0.9ms) select * from schema_migrations;
351
+  (0.4ms) select * from schema_migrations;
352
+  (0.4ms) select * from schema_migrations;
353
+  (0.4ms) select * from schema_migrations;
354
+  (0.4ms) select * from schema_migrations;
355
+  (0.4ms) select * from schema_migrations;
356
+  (0.5ms) select * from schema_migrations;
357
+  (0.5ms) select * from schema_migrations;
358
+  (0.4ms) select * from schema_migrations;
359
+  (0.4ms) select * from schema_migrations;
360
+  (0.4ms) select * from schema_migrations;
361
+  (0.4ms) select * from schema_migrations;
362
+  (0.8ms) select * from schema_migrations;
363
+  (0.7ms) select * from schema_migrations;
364
+  (0.6ms) select * from schema_migrations;
365
+  (0.4ms) select * from schema_migrations;
366
+  (0.5ms) select * from schema_migrations;
367
+  (0.5ms) select * from schema_migrations;
368
+  (0.4ms) select * from schema_migrations;
369
+  (0.4ms) select * from schema_migrations;
370
+  (0.4ms) select * from schema_migrations;
371
+  (0.3ms) select * from schema_migrations;
372
+  (0.4ms) select * from schema_migrations;
373
+  (0.5ms) select * from schema_migrations;
374
+  (0.3ms) select * from schema_migrations;
375
+  (0.3ms) select * from schema_migrations;
376
+  (0.3ms) select * from schema_migrations;
377
+  (0.3ms) select * from schema_migrations;
378
+  (0.3ms) select * from schema_migrations;
379
+  (0.3ms) select * from schema_migrations;
380
+  (1.1ms) select * from schema_migrations;
381
+  (0.7ms) select * from schema_migrations;
382
+  (0.8ms) select * from schema_migrations;
383
+  (1.3ms) select * from schema_migrations;
384
+  (0.9ms) select * from schema_migrations;
385
+  (0.5ms) select * from schema_migrations;
386
+  (0.8ms) select * from schema_migrations;
387
+  (1.8ms) select * from schema_migrations;
388
+  (0.5ms) select * from schema_migrations;
389
+  (0.9ms) select * from schema_migrations;
390
+  (0.5ms) select * from schema_migrations;
391
+  (0.7ms) select * from schema_migrations;
392
+  (0.6ms) select * from schema_migrations;
393
+  (0.5ms) select * from schema_migrations;
394
+  (0.5ms) select * from schema_migrations;
395
+  (0.5ms) select * from schema_migrations;
396
+  (0.5ms) select * from schema_migrations;
397
+  (0.7ms) select * from schema_migrations;
398
+  (0.5ms) select * from schema_migrations;
399
+  (0.4ms) select * from schema_migrations;
400
+  (0.4ms) select * from schema_migrations;
401
+  (0.4ms) select * from schema_migrations;
402
+  (0.4ms) select * from schema_migrations;
403
+  (0.5ms) select * from schema_migrations;
404
+  (0.4ms) select * from schema_migrations;
405
+  (0.5ms) select * from schema_migrations;
406
+  (0.5ms) select * from schema_migrations;
407
+  (0.3ms) select * from schema_migrations;
408
+  (0.4ms) select * from schema_migrations;
409
+  (0.4ms) select * from schema_migrations;
410
+  (0.3ms) select * from schema_migrations;
411
+  (0.5ms) select * from schema_migrations;
412
+  (0.5ms) select * from schema_migrations;
413
+  (0.5ms) select * from schema_migrations;
414
+  (0.5ms) select * from schema_migrations;
415
+  (4.7ms) select * from schema_migrations;
416
+  (2.1ms) select * from schema_migrations;
417
+  (1.1ms) select * from schema_migrations;
418
+  (0.6ms) select * from schema_migrations;
419
+  (0.5ms) select * from schema_migrations;
420
+  (0.7ms) select * from schema_migrations;
421
+  (0.4ms) select * from schema_migrations;
422
+  (0.2ms) select * from schema_migrations;
423
+  (0.6ms) select * from schema_migrations;
424
+  (0.5ms) select * from schema_migrations;
425
+  (0.4ms) select * from schema_migrations;
426
+  (0.3ms) select * from schema_migrations;
427
+  (0.4ms) select * from schema_migrations;
428
+  (0.4ms) select * from schema_migrations;
429
+  (0.4ms) select * from schema_migrations;
430
+  (0.4ms) select * from schema_migrations;
431
+  (0.5ms) select * from schema_migrations;
432
+  (7.9ms) select * from schema_migrations;
433
+  (1.1ms) select * from schema_migrations;
434
+  (0.6ms) select * from schema_migrations;
435
+  (0.5ms) select * from schema_migrations;
436
+  (0.5ms) select * from schema_migrations;
437
+  (0.5ms) select * from schema_migrations;
438
+  (0.5ms) select * from schema_migrations;
439
+  (0.4ms) select * from schema_migrations;
440
+  (0.4ms) select * from schema_migrations;
441
+  (0.4ms) select * from schema_migrations;
442
+  (0.4ms) select * from schema_migrations;
443
+  (0.4ms) select * from schema_migrations;
444
+  (0.4ms) select * from schema_migrations;
445
+  (1.6ms) select * from schema_migrations;
446
+  (0.8ms) select * from schema_migrations;
447
+  (0.4ms) select * from schema_migrations;
448
+  (1.4ms) select * from schema_migrations;
449
+  (0.5ms) select * from schema_migrations;
450
+  (1.1ms) select * from schema_migrations;
451
+  (0.5ms) select * from schema_migrations;
452
+  (0.4ms) select * from schema_migrations;
453
+  (0.6ms) select * from schema_migrations;
454
+  (0.5ms) select * from schema_migrations;
455
+  (0.2ms) select * from schema_migrations;
456
+  (1.1ms) select * from schema_migrations;
457
+  (0.7ms) select * from schema_migrations;
458
+  (1.0ms) select * from schema_migrations;
459
+  (0.6ms) select * from schema_migrations;
460
+  (0.7ms) select * from schema_migrations;
461
+  (0.5ms) select * from schema_migrations;
462
+  (0.5ms) select * from schema_migrations;
463
+  (0.7ms) select * from schema_migrations;
464
+  (1.1ms) select * from schema_migrations;
465
+  (0.8ms) select * from schema_migrations;
466
+  (0.6ms) select * from schema_migrations;
467
+  (0.6ms) select * from schema_migrations;
468
+  (0.5ms) select * from schema_migrations;
469
+  (0.4ms) select * from schema_migrations;
470
+  (1.7ms) select * from schema_migrations;
471
+  (0.6ms) select * from schema_migrations;
472
+  (1.4ms) select * from schema_migrations;
473
+  (0.5ms) select * from schema_migrations;
474
+  (5.4ms) select * from schema_migrations;
475
+  (0.8ms) select * from schema_migrations;
476
+  (0.6ms) select * from schema_migrations;
477
+  (0.6ms) select * from schema_migrations;
478
+  (0.5ms) select * from schema_migrations;
479
+  (0.7ms) select * from schema_migrations;
480
+  (0.5ms) select * from schema_migrations;
481
+  (0.6ms) select * from schema_migrations;
482
+  (0.7ms) select * from schema_migrations;
483
+  (0.6ms) select * from schema_migrations;
484
+  (0.5ms) select * from schema_migrations;
485
+  (0.6ms) select * from schema_migrations;
486
+  (0.6ms) select * from schema_migrations;
487
+  (0.5ms) select * from schema_migrations;
488
+  (0.6ms) select * from schema_migrations;
489
+  (0.5ms) select * from schema_migrations;
490
+  (0.7ms) select * from schema_migrations;
491
+  (0.6ms) select * from schema_migrations;
492
+  (0.7ms) select * from schema_migrations;
493
+  (0.5ms) select * from schema_migrations;
494
+  (0.5ms) select * from schema_migrations;
495
+  (6.4ms) select * from schema_migrations;
496
+  (0.9ms) select * from schema_migrations;
497
+  (0.5ms) select * from schema_migrations;
498
+  (0.4ms) select * from schema_migrations;
499
+  (0.5ms) select * from schema_migrations;
500
+  (0.5ms) select * from schema_migrations;
501
+  (0.6ms) select * from schema_migrations;
502
+  (0.5ms) select * from schema_migrations;
503
+  (0.5ms) select * from schema_migrations;
504
+  (0.5ms) select * from schema_migrations;
505
+  (0.4ms) select * from schema_migrations;
506
+  (0.5ms) select * from schema_migrations;
507
+  (0.5ms) select * from schema_migrations;
508
+  (0.4ms) select * from schema_migrations;
509
+  (0.4ms) select * from schema_migrations;
510
+  (0.4ms) select * from schema_migrations;
511
+  (0.4ms) select * from schema_migrations;
512
+  (0.4ms) select * from schema_migrations;
513
+  (0.5ms) select * from schema_migrations;
514
+  (0.4ms) select * from schema_migrations;
515
+  (0.4ms) select * from schema_migrations;
516
+  (0.3ms) select * from schema_migrations;
517
+  (0.4ms) select * from schema_migrations;
518
+  (0.3ms) select * from schema_migrations;
519
+  (0.5ms) select * from schema_migrations;
520
+  (0.3ms) select * from schema_migrations;
521
+  (0.4ms) select * from schema_migrations;
522
+  (0.4ms) select * from schema_migrations;
523
+  (0.9ms) select * from schema_migrations;
524
+  (0.7ms) select * from schema_migrations;
525
+  (1.0ms) select * from schema_migrations;
526
+  (1.0ms) select * from schema_migrations;
527
+  (0.6ms) select * from schema_migrations;
528
+  (0.5ms) select * from schema_migrations;
529
+  (0.4ms) select * from schema_migrations;
530
+  (0.6ms) select * from schema_migrations;
531
+  (0.5ms) select * from schema_migrations;
532
+  (0.4ms) select * from schema_migrations;
533
+  (0.5ms) select * from schema_migrations;
534
+  (0.8ms) select * from schema_migrations;
535
+  (0.5ms) select * from schema_migrations;
536
+  (0.7ms) select * from schema_migrations;
537
+  (0.4ms) select * from schema_migrations;
538
+  (0.4ms) select * from schema_migrations;
539
+  (0.5ms) select * from schema_migrations;
540
+  (0.4ms) select * from schema_migrations;
541
+  (0.4ms) select * from schema_migrations;
542
+  (0.4ms) select * from schema_migrations;
543
+  (0.4ms) select * from schema_migrations;
544
+  (0.4ms) select * from schema_migrations;
545
+  (0.4ms) select * from schema_migrations;
546
+  (0.4ms) select * from schema_migrations;
547
+  (0.2ms) select * from schema_migrations;
548
+  (0.4ms) select * from schema_migrations;
549
+  (0.4ms) select * from schema_migrations;
550
+  (0.3ms) select * from schema_migrations;
551
+  (0.5ms) select * from schema_migrations;
552
+  (0.4ms) select * from schema_migrations;
553
+  (0.3ms) select * from schema_migrations;
554
+  (0.4ms) select * from schema_migrations;
555
+  (0.4ms) select * from schema_migrations;
556
+  (0.4ms) select * from schema_migrations;
557
+  (0.4ms) select * from schema_migrations;
558
+  (0.5ms) select * from schema_migrations;
559
+  (0.5ms) select * from schema_migrations;
560
+  (0.5ms) select * from schema_migrations;
561
+  (0.5ms) select * from schema_migrations;
562
+  (0.5ms) select * from schema_migrations;
563
+  (0.4ms) select * from schema_migrations;
564
+  (4.8ms) select * from schema_migrations;
565
+  (0.4ms) select * from schema_migrations;
566
+  (0.6ms) select * from schema_migrations;
567
+  (0.5ms) select * from schema_migrations;
568
+  (0.6ms) select * from schema_migrations;
569
+  (0.4ms) select * from schema_migrations;
570
+  (0.5ms) select * from schema_migrations;
571
+  (0.4ms) select * from schema_migrations;
572
+  (0.4ms) select * from schema_migrations;
573
+  (0.8ms) select * from schema_migrations;
574
+  (0.7ms) select * from schema_migrations;
575
+  (1.7ms) select * from schema_migrations;
576
+  (0.6ms) select * from schema_migrations;
577
+  (0.5ms) select * from schema_migrations;
578
+  (0.5ms) select * from schema_migrations;
579
+  (0.5ms) select * from schema_migrations;
580
+  (0.4ms) select * from schema_migrations;
581
+  (0.4ms) select * from schema_migrations;
582
+  (0.5ms) select * from schema_migrations;
583
+  (0.6ms) select * from schema_migrations;
584
+  (0.4ms) select * from schema_migrations;
585
+  (0.5ms) select * from schema_migrations;
586
+  (0.4ms) select * from schema_migrations;
587
+  (0.5ms) select * from schema_migrations;
588
+  (1.5ms) select * from schema_migrations;
589
+  (0.6ms) select * from schema_migrations;
590
+  (0.7ms) select * from schema_migrations;
591
+  (1.6ms) select * from schema_migrations;
592
+  (0.5ms) select * from schema_migrations;
593
+  (1.1ms) select * from schema_migrations;
594
+  (0.7ms) select * from schema_migrations;
595
+  (0.5ms) select * from schema_migrations;
596
+  (0.4ms) select * from schema_migrations;
597
+  (0.5ms) select * from schema_migrations;
598
+  (0.4ms) select * from schema_migrations;
599
+  (1.5ms) select * from schema_migrations;
600
+  (0.8ms) select * from schema_migrations;
601
+  (0.5ms) select * from schema_migrations;
602
+  (0.4ms) select * from schema_migrations;
603
+  (0.5ms) select * from schema_migrations;
604
+  (0.5ms) select * from schema_migrations;
605
+  (0.6ms) select * from schema_migrations;
606
+  (0.5ms) select * from schema_migrations;
607
+  (0.5ms) select * from schema_migrations;
608
+  (2.2ms) select * from schema_migrations;
609
+  (0.7ms) select * from schema_migrations;
610
+  (0.5ms) select * from schema_migrations;
611
+  (0.6ms) select * from schema_migrations;
612
+  (0.4ms) select * from schema_migrations;
613
+  (1.6ms) select * from schema_migrations;
614
+  (0.7ms) select * from schema_migrations;
615
+  (1.2ms) select * from schema_migrations;
616
+  (0.3ms) select * from schema_migrations;
617
+  (1.7ms) select * from schema_migrations;
618
+  (1.1ms) select * from schema_migrations;
619
+  (0.7ms) select * from schema_migrations;
620
+  (0.5ms) select * from schema_migrations;
621
+  (0.7ms) select * from schema_migrations;
622
+  (0.5ms) select * from schema_migrations;
623
+  (0.4ms) select * from schema_migrations;
624
+  (0.5ms) select * from schema_migrations;
625
+  (0.8ms) select * from schema_migrations;
626
+  (0.6ms) select * from schema_migrations;
627
+  (0.5ms) select * from schema_migrations;
628
+  (0.5ms) select * from schema_migrations;
629
+  (0.5ms) select * from schema_migrations;
630
+  (0.5ms) select * from schema_migrations;
631
+  (0.6ms) select * from schema_migrations;
632
+  (0.5ms) select * from schema_migrations;
633
+  (6.7ms) select * from schema_migrations;
634
+  (0.9ms) select * from schema_migrations;
635
+  (0.9ms) select * from schema_migrations;
636
+  (0.4ms) select * from schema_migrations;
637
+  (0.4ms) select * from schema_migrations;
638
+  (0.5ms) select * from schema_migrations;
639
+  (0.5ms) select * from schema_migrations;
640
+  (0.4ms) select * from schema_migrations;
641
+  (0.5ms) select * from schema_migrations;
642
+  (0.5ms) select * from schema_migrations;
643
+  (0.5ms) select * from schema_migrations;
644
+  (0.5ms) select * from schema_migrations;
645
+  (1.1ms) select * from schema_migrations;
646
+  (0.5ms) select * from schema_migrations;
647
+  (0.5ms) select * from schema_migrations;
648
+  (0.4ms) select * from schema_migrations;
649
+  (0.4ms) select * from schema_migrations;
650
+  (0.4ms) select * from schema_migrations;
651
+  (0.5ms) select * from schema_migrations;
652
+  (0.7ms) select * from schema_migrations;
653
+  (0.5ms) select * from schema_migrations;
654
+  (0.5ms) select * from schema_migrations;
655
+  (0.5ms) select * from schema_migrations;
656
+  (0.6ms) select * from schema_migrations;
657
+  (0.4ms) select * from schema_migrations;
658
+  (0.4ms) select * from schema_migrations;
659
+  (0.3ms) select * from schema_migrations;
660
+  (0.4ms) select * from schema_migrations;
661
+  (0.3ms) select * from schema_migrations;
662
+  (0.4ms) select * from schema_migrations;
663
+  (0.4ms) select * from schema_migrations;
664
+  (0.3ms) select * from schema_migrations;
665
+  (0.3ms) select * from schema_migrations;
666
+  (1.2ms) select * from schema_migrations;
667
+  (0.8ms) select * from schema_migrations;
668
+  (0.5ms) select * from schema_migrations;
669
+  (1.1ms) select * from schema_migrations;
670
+  (0.6ms) select * from schema_migrations;
671
+  (0.5ms) select * from schema_migrations;
672
+  (0.5ms) select * from schema_migrations;
673
+  (0.6ms) select * from schema_migrations;
674
+  (0.6ms) select * from schema_migrations;
675
+  (0.7ms) select * from schema_migrations;
676
+  (1.1ms) select * from schema_migrations;
677
+  (0.6ms) select * from schema_migrations;
678
+  (0.5ms) select * from schema_migrations;
679
+  (0.4ms) select * from schema_migrations;
680
+  (0.6ms) select * from schema_migrations;
681
+  (0.4ms) select * from schema_migrations;
682
+  (0.6ms) select * from schema_migrations;
683
+  (0.5ms) select * from schema_migrations;
684
+  (0.4ms) select * from schema_migrations;
685
+  (0.4ms) select * from schema_migrations;
686
+  (0.4ms) select * from schema_migrations;
687
+  (0.4ms) select * from schema_migrations;
688
+  (0.4ms) select * from schema_migrations;
689
+  (0.4ms) select * from schema_migrations;
690
+  (0.3ms) select * from schema_migrations;
691
+  (0.4ms) select * from schema_migrations;
692
+  (0.4ms) select * from schema_migrations;
693
+  (0.5ms) select * from schema_migrations;
694
+  (1.1ms) select * from schema_migrations;
695
+  (0.7ms) select * from schema_migrations;
696
+  (0.4ms) select * from schema_migrations;
697
+  (0.5ms) select * from schema_migrations;
698
+  (0.8ms) select * from schema_migrations;
699
+  (0.5ms) select * from schema_migrations;
700
+  (0.4ms) select * from schema_migrations;
701
+  (4.8ms) select * from schema_migrations;
702
+  (0.9ms) select * from schema_migrations;
703
+  (0.6ms) select * from schema_migrations;
704
+  (0.4ms) select * from schema_migrations;
705
+  (0.4ms) select * from schema_migrations;
706
+  (0.5ms) select * from schema_migrations;
707
+  (0.5ms) select * from schema_migrations;
708
+  (0.3ms) select * from schema_migrations;
709
+  (0.5ms) select * from schema_migrations;
710
+  (0.5ms) select * from schema_migrations;
711
+  (0.5ms) select * from schema_migrations;
712
+  (0.4ms) select * from schema_migrations;
713
+  (0.5ms) select * from schema_migrations;
714
+  (0.4ms) select * from schema_migrations;
715
+  (0.5ms) select * from schema_migrations;
716
+  (0.5ms) select * from schema_migrations;
717
+  (4.4ms) select * from schema_migrations;
718
+  (1.7ms) select * from schema_migrations;
719
+  (1.4ms) select * from schema_migrations;
720
+  (2.2ms) select * from schema_migrations;
721
+  (0.7ms) select * from schema_migrations;
722
+  (0.6ms) select * from schema_migrations;
723
+  (0.7ms) select * from schema_migrations;
724
+  (0.7ms) select * from schema_migrations;
725
+  (0.6ms) select * from schema_migrations;
726
+  (0.6ms) select * from schema_migrations;
727
+  (0.6ms) select * from schema_migrations;
728
+  (0.6ms) select * from schema_migrations;
729
+  (0.9ms) select * from schema_migrations;
730
+  (0.5ms) select * from schema_migrations;
731
+  (1.8ms) select * from schema_migrations;
732
+  (1.2ms) select * from schema_migrations;
733
+  (0.6ms) select * from schema_migrations;
734
+  (1.8ms) select * from schema_migrations;
735
+  (0.7ms) select * from schema_migrations;
736
+  (1.6ms) select * from schema_migrations;
737
+  (1.3ms) select * from schema_migrations;
738
+  (1.1ms) select * from schema_migrations;
739
+  (0.7ms) select * from schema_migrations;
740
+  (0.7ms) select * from schema_migrations;
741
+  (0.6ms) select * from schema_migrations;
742
+  (1.3ms) select * from schema_migrations;
743
+  (1.1ms) select * from schema_migrations;
744
+  (1.1ms) select * from schema_migrations;
745
+  (0.9ms) select * from schema_migrations;
746
+  (0.8ms) select * from schema_migrations;
747
+  (0.7ms) select * from schema_migrations;
748
+  (0.6ms) select * from schema_migrations;
749
+  (0.6ms) select * from schema_migrations;
750
+  (0.8ms) select * from schema_migrations;
751
+  (0.7ms) select * from schema_migrations;
752
+  (0.6ms) select * from schema_migrations;
753
+  (0.6ms) select * from schema_migrations;
754
+  (0.5ms) select * from schema_migrations;
755
+  (0.3ms) select * from schema_migrations;
756
+  (1.4ms) select * from schema_migrations;
757
+  (0.6ms) select * from schema_migrations;
758
+  (2.2ms) select * from schema_migrations;
759
+  (0.5ms) select * from schema_migrations;
760
+  (1.6ms) select * from schema_migrations;
761
+  (0.9ms) select * from schema_migrations;
762
+  (1.4ms) select * from schema_migrations;
763
+  (0.9ms) select * from schema_migrations;
764
+  (0.8ms) select * from schema_migrations;
765
+  (0.6ms) select * from schema_migrations;
766
+  (0.6ms) select * from schema_migrations;
767
+  (0.8ms) select * from schema_migrations;
768
+  (0.6ms) select * from schema_migrations;
769
+  (0.6ms) select * from schema_migrations;
770
+  (0.6ms) select * from schema_migrations;
771
+  (0.6ms) select * from schema_migrations;
772
+  (0.7ms) select * from schema_migrations;
773
+  (0.6ms) select * from schema_migrations;
774
+  (0.6ms) select * from schema_migrations;
775
+  (0.6ms) select * from schema_migrations;
776
+  (0.6ms) select * from schema_migrations;
777
+  (0.6ms) select * from schema_migrations;
778
+  (0.5ms) select * from schema_migrations;
779
+  (0.5ms) select * from schema_migrations;
780
+  (6.0ms) select * from schema_migrations;
781
+  (1.0ms) select * from schema_migrations;
782
+  (0.6ms) select * from schema_migrations;
783
+  (0.5ms) select * from schema_migrations;
784
+  (0.4ms) select * from schema_migrations;
785
+  (0.4ms) select * from schema_migrations;
786
+  (0.4ms) select * from schema_migrations;
787
+  (0.4ms) select * from schema_migrations;
788
+  (0.4ms) select * from schema_migrations;
789
+  (0.4ms) select * from schema_migrations;
790
+  (0.4ms) select * from schema_migrations;
791
+  (0.5ms) select * from schema_migrations;
792
+  (0.3ms) select * from schema_migrations;
793
+  (0.3ms) select * from schema_migrations;
794
+  (0.3ms) select * from schema_migrations;
795
+  (0.3ms) select * from schema_migrations;
796
+  (0.2ms) select * from schema_migrations;
797
+  (0.3ms) select * from schema_migrations;
798
+  (0.3ms) select * from schema_migrations;
799
+  (0.2ms) select * from schema_migrations;
800
+  (0.3ms) select * from schema_migrations;
801
+  (0.3ms) select * from schema_migrations;
802
+  (0.3ms) select * from schema_migrations;
803
+  (0.3ms) select * from schema_migrations;
804
+  (0.3ms) select * from schema_migrations;
805
+  (0.3ms) select * from schema_migrations;
806
+  (0.3ms) select * from schema_migrations;
807
+  (0.3ms) select * from schema_migrations;
808
+  (0.3ms) select * from schema_migrations;
809
+  (1.1ms) select * from schema_migrations;
810
+  (1.3ms) select * from schema_migrations;
811
+  (1.3ms) select * from schema_migrations;
812
+  (1.1ms) select * from schema_migrations;
813
+  (1.4ms) select * from schema_migrations;
814
+  (0.8ms) select * from schema_migrations;
815
+  (0.6ms) select * from schema_migrations;
816
+  (0.8ms) select * from schema_migrations;
817
+  (1.0ms) select * from schema_migrations;
818
+  (0.4ms) select * from schema_migrations;
819
+  (0.7ms) select * from schema_migrations;
820
+  (1.1ms) select * from schema_migrations;
821
+  (0.7ms) select * from schema_migrations;
822
+  (0.8ms) select * from schema_migrations;
823
+  (0.6ms) select * from schema_migrations;
824
+  (0.6ms) select * from schema_migrations;
825
+  (0.6ms) select * from schema_migrations;
826
+  (0.5ms) select * from schema_migrations;
827
+  (0.6ms) select * from schema_migrations;
828
+  (0.5ms) select * from schema_migrations;
829
+  (0.5ms) select * from schema_migrations;
830
+  (0.5ms) select * from schema_migrations;
831
+  (0.5ms) select * from schema_migrations;
832
+  (0.5ms) select * from schema_migrations;
833
+  (0.3ms) select * from schema_migrations;
834
+  (0.5ms) select * from schema_migrations;
835
+  (0.5ms) select * from schema_migrations;
836
+  (0.6ms) select * from schema_migrations;
837
+  (0.8ms) select * from schema_migrations;
838
+  (0.7ms) select * from schema_migrations;
839
+  (0.4ms) select * from schema_migrations;
840
+  (0.7ms) select * from schema_migrations;
841
+  (0.7ms) select * from schema_migrations;
842
+  (0.9ms) select * from schema_migrations;
843
+  (0.5ms) select * from schema_migrations;
844
+  (0.5ms) select * from schema_migrations;
845
+  (0.5ms) select * from schema_migrations;
846
+  (0.4ms) select * from schema_migrations;
847
+  (0.3ms) select * from schema_migrations;
848
+  (0.3ms) select * from schema_migrations;
849
+  (0.8ms) select * from schema_migrations;
850
+  (0.5ms) select * from schema_migrations;
851
+  (0.2ms) select * from schema_migrations;
852
+  (0.3ms) select * from schema_migrations;
853
+  (0.3ms) select * from schema_migrations;
854
+  (0.3ms) select * from schema_migrations;
855
+  (0.3ms) select * from schema_migrations;
856
+  (0.3ms) select * from schema_migrations;
857
+  (0.4ms) select * from schema_migrations;
858
+  (0.3ms) select * from schema_migrations;
859
+  (0.2ms) select * from schema_migrations;
860
+  (4.3ms) select * from schema_migrations;
861
+  (1.4ms) select * from schema_migrations;
862
+  (1.3ms) select * from schema_migrations;
863
+  (3.0ms) select * from schema_migrations;
864
+  (3.1ms) select * from schema_migrations;
865
+  (1.4ms) select * from schema_migrations;
866
+  (1.1ms) select * from schema_migrations;
867
+  (0.9ms) select * from schema_migrations;
868
+  (1.0ms) select * from schema_migrations;
869
+  (0.8ms) select * from schema_migrations;
870
+  (0.8ms) select * from schema_migrations;
871
+  (0.7ms) select * from schema_migrations;
872
+  (0.6ms) select * from schema_migrations;
873
+  (0.4ms) select * from schema_migrations;
874
+  (1.2ms) select * from schema_migrations;
875
+  (0.8ms) select * from schema_migrations;
876
+  (0.4ms) select * from schema_migrations;
877
+  (1.2ms) select * from schema_migrations;
878
+  (0.3ms) select * from schema_migrations;
879
+  (1.6ms) select * from schema_migrations;
880
+  (1.4ms) select * from schema_migrations;
881
+  (1.5ms) select * from schema_migrations;
882
+  (0.9ms) select * from schema_migrations;
883
+  (0.8ms) select * from schema_migrations;
884
+  (0.6ms) select * from schema_migrations;
885
+  (2.3ms) select * from schema_migrations;
886
+  (1.1ms) select * from schema_migrations;
887
+  (0.9ms) select * from schema_migrations;
888
+  (0.7ms) select * from schema_migrations;
889
+  (0.7ms) select * from schema_migrations;
890
+  (0.6ms) select * from schema_migrations;
891
+  (0.6ms) select * from schema_migrations;
892
+  (0.6ms) select * from schema_migrations;
893
+  (0.5ms) select * from schema_migrations;
894
+  (0.5ms) select * from schema_migrations;
895
+  (0.6ms) select * from schema_migrations;
896
+  (0.5ms) select * from schema_migrations;
897
+  (0.5ms) select * from schema_migrations;
898
+  (0.5ms) select * from schema_migrations;
899
+  (1.4ms) select * from schema_migrations;
900
+  (0.6ms) select * from schema_migrations;
901
+  (2.3ms) select * from schema_migrations;
902
+  (0.4ms) select * from schema_migrations;
903
+  (1.5ms) select * from schema_migrations;
904
+  (1.1ms) select * from schema_migrations;
905
+  (1.2ms) select * from schema_migrations;
906
+  (0.8ms) select * from schema_migrations;
907
+  (0.8ms) select * from schema_migrations;
908
+  (0.5ms) select * from schema_migrations;
909
+  (0.5ms) select * from schema_migrations;
910
+  (0.5ms) select * from schema_migrations;
911
+  (0.9ms) select * from schema_migrations;
912
+  (0.6ms) select * from schema_migrations;
913
+  (0.6ms) select * from schema_migrations;
914
+  (0.8ms) select * from schema_migrations;
915
+  (0.8ms) select * from schema_migrations;
916
+  (0.6ms) select * from schema_migrations;
917
+  (0.5ms) select * from schema_migrations;
918
+  (0.5ms) select * from schema_migrations;
919
+  (0.5ms) select * from schema_migrations;
920
+  (0.5ms) select * from schema_migrations;
921
+  (0.5ms) select * from schema_migrations;
922
+  (0.5ms) select * from schema_migrations;
923
+  (0.5ms) select * from schema_migrations;
924
+  (1.2ms) select * from schema_migrations;
925
+  (0.5ms) select * from schema_migrations;
926
+  (0.5ms) select * from schema_migrations;
927
+  (0.6ms) select * from schema_migrations;
928
+  (0.5ms) select * from schema_migrations;
929
+  (0.5ms) select * from schema_migrations;
930
+  (0.4ms) select * from schema_migrations;
931
+  (0.6ms) select * from schema_migrations;
932
+  (0.5ms) select * from schema_migrations;
933
+  (0.4ms) select * from schema_migrations;
934
+  (0.4ms) select * from schema_migrations;
935
+  (0.4ms) select * from schema_migrations;
936
+  (0.4ms) select * from schema_migrations;
937
+  (0.4ms) select * from schema_migrations;
938
+  (0.5ms) select * from schema_migrations;
939
+  (0.3ms) select * from schema_migrations;
940
+  (0.3ms) select * from schema_migrations;
941
+  (0.3ms) select * from schema_migrations;
942
+  (0.3ms) select * from schema_migrations;
943
+  (0.3ms) select * from schema_migrations;
944
+  (0.3ms) select * from schema_migrations;
945
+  (0.3ms) select * from schema_migrations;
946
+  (0.3ms) select * from schema_migrations;
947
+  (0.3ms) select * from schema_migrations;
948
+  (0.3ms) select * from schema_migrations;
949
+  (0.3ms) select * from schema_migrations;
950
+  (0.3ms) select * from schema_migrations;
951
+  (0.3ms) select * from schema_migrations;
952
+  (1.4ms) select * from schema_migrations;
953
+  (1.0ms) select * from schema_migrations;
954
+  (1.2ms) select * from schema_migrations;
955
+  (1.0ms) select * from schema_migrations;
956
+  (0.7ms) select * from schema_migrations;
957
+  (0.6ms) select * from schema_migrations;
958
+  (0.5ms) select * from schema_migrations;
959
+  (1.2ms) select * from schema_migrations;
960
+  (1.0ms) select * from schema_migrations;
961
+  (0.5ms) select * from schema_migrations;
962
+  (0.8ms) select * from schema_migrations;
963
+  (0.8ms) select * from schema_migrations;
964
+  (1.1ms) select * from schema_migrations;
965
+  (0.7ms) select * from schema_migrations;
966
+  (0.7ms) select * from schema_migrations;
967
+  (0.8ms) select * from schema_migrations;
968
+  (0.8ms) select * from schema_migrations;
969
+  (0.7ms) select * from schema_migrations;
970
+  (0.9ms) select * from schema_migrations;
971
+  (1.1ms) select * from schema_migrations;
972
+  (3.2ms) select * from schema_migrations;
973
+  (4.9ms) select * from schema_migrations;
974
+  (1.5ms) select * from schema_migrations;
975
+  (0.4ms) select * from schema_migrations;
976
+  (0.2ms) select * from schema_migrations;
977
+  (0.3ms) select * from schema_migrations;
978
+  (0.3ms) select * from schema_migrations;
979
+  (0.2ms) select * from schema_migrations;
980
+  (0.5ms) select * from schema_migrations;
981
+  (0.3ms) select * from schema_migrations;
982
+  (0.6ms) select * from schema_migrations;
983
+  (0.5ms) select * from schema_migrations;
984
+  (1.0ms) select * from schema_migrations;
985
+  (0.7ms) select * from schema_migrations;
986
+  (0.7ms) select * from schema_migrations;
987
+  (0.5ms) select * from schema_migrations;
988
+  (0.7ms) select * from schema_migrations;
989
+  (0.4ms) select * from schema_migrations;
990
+  (0.3ms) select * from schema_migrations;
991
+  (0.4ms) select * from schema_migrations;
992
+  (6.6ms) select * from schema_migrations;
993
+  (0.7ms) select * from schema_migrations;
994
+  (0.3ms) select * from schema_migrations;
995
+  (0.3ms) select * from schema_migrations;
996
+  (0.4ms) select * from schema_migrations;
997
+  (0.4ms) select * from schema_migrations;
998
+  (0.3ms) select * from schema_migrations;
999
+  (0.4ms) select * from schema_migrations;
1000
+  (0.3ms) select * from schema_migrations;
1001
+  (0.3ms) select * from schema_migrations;
1002
+  (0.4ms) select * from schema_migrations;
1003
+  (0.4ms) select * from schema_migrations;
1004
+  (1.0ms) select * from schema_migrations;
1005
+  (0.8ms) select * from schema_migrations;
1006
+  (0.7ms) select * from schema_migrations;
1007
+  (0.8ms) select * from schema_migrations;
1008
+  (0.6ms) select * from schema_migrations;
1009
+  (0.6ms) select * from schema_migrations;
1010
+  (0.6ms) select * from schema_migrations;
1011
+  (0.5ms) select * from schema_migrations;
1012
+  (0.7ms) select * from schema_migrations;
1013
+  (0.6ms) select * from schema_migrations;
1014
+  (0.5ms) select * from schema_migrations;
1015
+  (0.6ms) select * from schema_migrations;
1016
+  (0.3ms) select * from schema_migrations;
1017
+  (1.1ms) select * from schema_migrations;
1018
+  (1.1ms) select * from schema_migrations;
1019
+  (0.3ms) select * from schema_migrations;
1020
+  (1.6ms) select * from schema_migrations;
1021
+  (0.8ms) select * from schema_migrations;
1022
+  (1.6ms) select * from schema_migrations;
1023
+  (0.7ms) select * from schema_migrations;
1024
+  (0.5ms) select * from schema_migrations;
1025
+  (0.5ms) select * from schema_migrations;
1026
+  (0.8ms) select * from schema_migrations;
1027
+  (0.4ms) select * from schema_migrations;
1028
+  (1.5ms) select * from schema_migrations;
1029
+  (0.6ms) select * from schema_migrations;
1030
+  (0.7ms) select * from schema_migrations;
1031
+  (0.5ms) select * from schema_migrations;
1032
+  (0.7ms) select * from schema_migrations;
1033
+  (0.7ms) select * from schema_migrations;
1034
+  (0.5ms) select * from schema_migrations;
1035
+  (0.5ms) select * from schema_migrations;
1036
+  (0.7ms) select * from schema_migrations;
1037
+  (0.6ms) select * from schema_migrations;
1038
+  (0.6ms) select * from schema_migrations;
1039
+  (0.6ms) select * from schema_migrations;
1040
+  (0.6ms) select * from schema_migrations;
1041
+  (0.4ms) select * from schema_migrations;
1042
+  (2.1ms) select * from schema_migrations;
1043
+  (0.7ms) select * from schema_migrations;
1044
+  (7.3ms) select * from schema_migrations;
1045
+  (0.6ms) select * from schema_migrations;
1046
+  (1.3ms) select * from schema_migrations;
1047
+  (0.7ms) select * from schema_migrations;
1048
+  (0.7ms) select * from schema_migrations;
1049
+  (0.5ms) select * from schema_migrations;
1050
+  (1.4ms) select * from schema_migrations;
1051
+  (1.5ms) select * from schema_migrations;
1052
+  (1.0ms) select * from schema_migrations;
1053
+  (0.5ms) select * from schema_migrations;
1054
+  (1.4ms) select * from schema_migrations;
1055
+  (0.5ms) select * from schema_migrations;
1056
+  (0.6ms) select * from schema_migrations;
1057
+  (0.5ms) select * from schema_migrations;
1058
+  (1.3ms) select * from schema_migrations;
1059
+  (1.3ms) select * from schema_migrations;
1060
+  (1.4ms) select * from schema_migrations;
1061
+  (1.9ms) select * from schema_migrations;
1062
+  (1.7ms) select * from schema_migrations;
1063
+  (0.9ms) select * from schema_migrations;
1064
+  (2.5ms) select * from schema_migrations;
1065
+  (0.8ms) select * from schema_migrations;
1066
+  (0.6ms) select * from schema_migrations;
1067
+  (1.5ms) select * from schema_migrations;
1068
+  (0.9ms) select * from schema_migrations;
1069
+  (0.8ms) select * from schema_migrations;
1070
+  (0.8ms) select * from schema_migrations;
1071
+  (0.9ms) select * from schema_migrations;
1072
+  (0.7ms) select * from schema_migrations;
1073
+  (0.9ms) select * from schema_migrations;
1074
+  (0.7ms) select * from schema_migrations;
1075
+  (0.6ms) select * from schema_migrations;
1076
+  (0.5ms) select * from schema_migrations;
1077
+  (0.7ms) select * from schema_migrations;
1078
+  (0.5ms) select * from schema_migrations;
1079
+  (0.5ms) select * from schema_migrations;
1080
+  (0.6ms) select * from schema_migrations;
1081
+  (0.5ms) select * from schema_migrations;
1082
+  (0.5ms) select * from schema_migrations;
1083
+  (0.5ms) select * from schema_migrations;
1084
+  (0.7ms) select * from schema_migrations;
1085
+  (0.6ms) select * from schema_migrations;
1086
+  (0.5ms) select * from schema_migrations;
1087
+  (0.6ms) select * from schema_migrations;
1088
+  (0.4ms) select * from schema_migrations;
1089
+  (0.9ms) select * from schema_migrations;
1090
+  (0.7ms) select * from schema_migrations;
1091
+  (0.7ms) select * from schema_migrations;
1092
+  (0.6ms) select * from schema_migrations;
1093
+  (0.5ms) select * from schema_migrations;
1094
+  (0.8ms) select * from schema_migrations;
1095
+  (1.4ms) select * from schema_migrations;
1096
+  (0.8ms) select * from schema_migrations;
1097
+  (1.2ms) select * from schema_migrations;
1098
+  (0.7ms) select * from schema_migrations;
1099
+  (0.8ms) select * from schema_migrations;
1100
+  (0.7ms) select * from schema_migrations;
1101
+  (0.5ms) select * from schema_migrations;
1102
+  (1.1ms) select * from schema_migrations;
1103
+  (1.1ms) select * from schema_migrations;
1104
+  (0.4ms) select * from schema_migrations;
1105
+  (0.9ms) select * from schema_migrations;
1106
+  (0.8ms) select * from schema_migrations;
1107
+  (0.6ms) select * from schema_migrations;
1108
+  (0.6ms) select * from schema_migrations;
1109
+  (0.7ms) select * from schema_migrations;
1110
+  (0.7ms) select * from schema_migrations;
1111
+  (0.6ms) select * from schema_migrations;
1112
+  (0.7ms) select * from schema_migrations;
1113
+  (1.6ms) select * from schema_migrations;
1114
+  (1.4ms) select * from schema_migrations;
1115
+  (1.0ms) select * from schema_migrations;
1116
+  (1.0ms) select * from schema_migrations;
1117
+  (1.0ms) select * from schema_migrations;
1118
+  (1.2ms) select * from schema_migrations;
1119
+  (1.6ms) select * from schema_migrations;
1120
+  (1.4ms) select * from schema_migrations;
1121
+  (0.3ms) select * from schema_migrations;
1122
+  (0.2ms) select * from schema_migrations;
1123
+  (0.3ms) select * from schema_migrations;
1124
+  (0.3ms) select * from schema_migrations;
1125
+  (0.2ms) select * from schema_migrations;
1126
+  (0.3ms) select * from schema_migrations;
1127
+  (0.3ms) select * from schema_migrations;
1128
+  (0.3ms) select * from schema_migrations;
1129
+  (0.4ms) select * from schema_migrations;
1130
+  (0.3ms) select * from schema_migrations;
1131
+  (0.4ms) select * from schema_migrations;
1132
+  (0.3ms) select * from schema_migrations;
1133
+  (0.5ms) select * from schema_migrations;
1134
+  (0.4ms) select * from schema_migrations;
1135
+  (0.3ms) select * from schema_migrations;
1136
+  (0.3ms) select * from schema_migrations;
1137
+  (0.8ms) select * from schema_migrations;
1138
+  (1.4ms) select * from schema_migrations;
1139
+  (1.5ms) select * from schema_migrations;
1140
+  (2.1ms) select * from schema_migrations;
1141
+  (0.8ms) select * from schema_migrations;
1142
+  (0.8ms) select * from schema_migrations;
1143
+  (0.8ms) select * from schema_migrations;
1144
+  (0.5ms) select * from schema_migrations;
1145
+  (0.6ms) select * from schema_migrations;