localtower 0.5.0 → 2.0.0

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 (234) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +129 -33
  3. data/app/assets/stylesheets/application.css +68 -0
  4. data/app/controllers/localtower/pages_controller.rb +30 -30
  5. data/app/javascript/application.js +46 -0
  6. data/app/javascript/components/DarkSelect.js +115 -0
  7. data/app/javascript/components/ModernTooltip.js +26 -0
  8. data/app/javascript/components/NewMigrationForm.js +687 -0
  9. data/app/javascript/components/NewModelForm.js +432 -0
  10. data/app/javascript/components/data/Stores.js +294 -0
  11. data/app/views/layouts/localtower/application.html.erb +77 -80
  12. data/app/views/localtower/_migration.html.erb +30 -0
  13. data/app/views/localtower/pages/_alert_no_models.html.erb +3 -0
  14. data/app/views/localtower/pages/migrations.html.erb +25 -87
  15. data/app/views/localtower/pages/new_migration.html.erb +40 -0
  16. data/app/views/localtower/pages/new_model.html.erb +21 -0
  17. data/config/routes.rb +5 -5
  18. data/lib/localtower/engine.rb +5 -2
  19. data/lib/localtower/generators/migration.rb +219 -161
  20. data/lib/localtower/generators/model.rb +59 -26
  21. data/lib/localtower/generators/service_objects/insert_array.rb +25 -0
  22. data/lib/localtower/generators/service_objects/insert_defaults.rb +85 -43
  23. data/lib/localtower/generators/service_objects/insert_foreign_keys.rb +35 -0
  24. data/lib/localtower/generators/service_objects/insert_indexes.rb +103 -0
  25. data/lib/localtower/generators/service_objects/insert_nullable.rb +25 -0
  26. data/lib/localtower/status.rb +4 -2
  27. data/lib/localtower/tools.rb +31 -23
  28. data/lib/localtower/version.rb +1 -1
  29. data/lib/localtower.rb +0 -6
  30. data/public/com/favicon-64.png +0 -0
  31. data/public/com/twitter-cover-1.png +0 -0
  32. data/public/com/twitter-cover-2.png +0 -0
  33. data/public/fonts/Circular/CircularStd-Black.otf +0 -0
  34. data/public/fonts/Circular/CircularStd-BlackItalic.otf +0 -0
  35. data/public/fonts/Circular/CircularStd-Bold.otf +0 -0
  36. data/public/fonts/Circular/CircularStd-BoldItalic.otf +0 -0
  37. data/public/fonts/Circular/CircularStd-Book.otf +0 -0
  38. data/public/fonts/Circular/CircularStd-BookItalic.otf +0 -0
  39. data/public/fonts/Circular/CircularStd-Light Italic.otf +0 -0
  40. data/public/fonts/Circular/CircularStd-Light.otf +0 -0
  41. data/public/fonts/Circular/CircularStd-Medium.otf +0 -0
  42. data/public/fonts/Circular/CircularStd-MediumItalic.otf +0 -0
  43. data/public/fonts/Circular/Read Me.txt +5 -0
  44. data/public/fonts/Circular/www.dfonts.org.url +2 -0
  45. data/public/javascripts/application.js +30830 -0
  46. data/public/javascripts/application.js.map +7 -0
  47. data/public/screenshots/v0.1.1/1_schema.png +0 -0
  48. data/public/screenshots/v0.1.1/2_models_1.png +0 -0
  49. data/public/screenshots/v0.1.1/2_models_2.png +0 -0
  50. data/public/screenshots/v0.1.1/3_relations.png +0 -0
  51. data/public/screenshots/v0.1.1/4_migrations.png +0 -0
  52. data/public/screenshots/v0.1.6/1_schema.png +0 -0
  53. data/public/screenshots/v0.1.6/2_models_1.png +0 -0
  54. data/public/screenshots/v0.1.6/3_relations.png +0 -0
  55. data/public/screenshots/v0.1.6/4_migrations.png +0 -0
  56. data/public/screenshots/v0.1.6/5_capture.png +0 -0
  57. data/public/screenshots/v1.0.0/migrations.png +0 -0
  58. data/public/screenshots/v1.0.0/models.png +0 -0
  59. data/public/screenshots/v1.0.0/new_migration.png +0 -0
  60. data/public/screenshots/v1.0.0/new_model.png +0 -0
  61. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.30.jpg +0 -0
  62. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.42.jpg +0 -0
  63. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.44.54.jpg +0 -0
  64. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.21.jpg +0 -0
  65. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.28.jpg +0 -0
  66. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.48.51.jpg +0 -0
  67. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.49.09.jpg +0 -0
  68. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.04.jpg +0 -0
  69. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.11.jpg +0 -0
  70. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.50.19.jpg +0 -0
  71. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.51.47.jpg +0 -0
  72. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.51.48.jpg +0 -0
  73. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.02.jpg +0 -0
  74. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.18.jpg +0 -0
  75. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.26.jpg +0 -0
  76. data/public/screenshots/v2.0.0/Screenshot 2024-11-18 at 22.52.38.jpg +0 -0
  77. data/public/screenshots/v2.0.0/migrations.png +0 -0
  78. data/public/screenshots/v2.0.0/new_migration.png +0 -0
  79. data/public/screenshots/v2.0.0/new_model.png +0 -0
  80. data/public/stylesheets/application.css +1179 -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 -3
  86. data/spec/dummy/Gemfile.lock +140 -111
  87. data/spec/dummy/config/database.yml +4 -6
  88. data/spec/dummy/config/environments/development.rb +1 -0
  89. data/spec/dummy/db/migrate/20241118233214_create_users.rb +9 -0
  90. data/spec/dummy/db/migrate/20241118233233_add_column_titme_for_user.rb +6 -0
  91. data/spec/dummy/db/schema.rb +4 -8
  92. data/spec/dummy/lib/tasks/reset.rake +16 -0
  93. data/spec/dummy/log/development.log +21437 -4475
  94. data/spec/dummy/log/localtower.log +586 -139
  95. data/spec/dummy/log/test.log +716 -0
  96. data/spec/dummy/test/index.html +38 -0
  97. data/spec/dummy/tmp/cache/sessions/localtower/726/FE1/_session_id%3A2%3A%3A69d6764784f832ea25700ea2f242210f3f8d94b48912b0f09ffc44311f0376eb +0 -0
  98. data/spec/dummy/tmp/cache/sessions/localtower/77E/121/_session_id%3A2%3A%3A0b3c1fe7154461ba023ba6c81dd1b999348757880b505f4b082faed263a627f9 +1 -0
  99. data/spec/dummy/tmp/cache/sessions/localtower/7EB/8A1/_session_id%3A2%3A%3Af88237c1d157546a5dcde894fd6c1410162a8eba318748d4ac573ee75e40df16 +0 -0
  100. data/spec/dummy/tmp/local_secret.txt +1 -0
  101. data/spec/dummy/tmp/pids/server.pid +1 -0
  102. data/spec/factories/migration.rb +87 -66
  103. data/spec/factories/model.rb +54 -20
  104. data/spec/lib/localtower/generators/migration_spec.rb +28 -63
  105. data/spec/lib/localtower/generators/model_spec.rb +96 -24
  106. data/spec/lib/localtower/generators/service_objects/insert_array_spec.rb +47 -0
  107. data/spec/lib/localtower/generators/service_objects/insert_defaults_spec.rb +30 -35
  108. data/spec/lib/localtower/generators/service_objects/insert_foreign_keys_spec.rb +101 -0
  109. data/spec/lib/localtower/generators/service_objects/insert_indexes_spec.rb +90 -0
  110. data/spec/lib/localtower/generators/service_objects/insert_nullable_spec.rb +61 -0
  111. data/spec/lib/localtower/tools_spec.rb +1 -11
  112. data/spec/spec_helper.rb +10 -6
  113. metadata +130 -237
  114. data/app/views/localtower/pages/_migrations.html.erb +0 -57
  115. data/app/views/localtower/pages/models.html.erb +0 -80
  116. data/app/views/localtower/pages/schema.html.erb +0 -67
  117. data/public/css/app.css +0 -104
  118. data/public/js/app.js +0 -192
  119. data/public/light-bootstrap-dashboard-master/assets/css/animate.min.css +0 -6
  120. data/public/light-bootstrap-dashboard-master/assets/css/bootstrap.min.css +0 -5
  121. data/public/light-bootstrap-dashboard-master/assets/css/demo.css +0 -61
  122. data/public/light-bootstrap-dashboard-master/assets/css/light-bootstrap-dashboard.css +0 -2789
  123. data/public/light-bootstrap-dashboard-master/assets/css/pe-icon-7-stroke.css +0 -632
  124. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.eot +0 -0
  125. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.svg +0 -212
  126. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.ttf +0 -0
  127. data/public/light-bootstrap-dashboard-master/assets/fonts/Pe-icon-7-stroke.woff +0 -0
  128. data/public/light-bootstrap-dashboard-master/assets/img/default-avatar.png +0 -0
  129. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-0.jpg +0 -0
  130. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-1.jpg +0 -0
  131. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-2.jpg +0 -0
  132. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-3.jpg +0 -0
  133. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-4.jpg +0 -0
  134. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-5.jpg +0 -0
  135. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-6.jpg +0 -0
  136. data/public/light-bootstrap-dashboard-master/assets/img/faces/face-7.jpg +0 -0
  137. data/public/light-bootstrap-dashboard-master/assets/img/faces/tim_vector.jpe +0 -0
  138. data/public/light-bootstrap-dashboard-master/assets/img/favicon.ico +0 -0
  139. data/public/light-bootstrap-dashboard-master/assets/img/loading-bubbles.svg +0 -14
  140. data/public/light-bootstrap-dashboard-master/assets/img/mask.png +0 -0
  141. data/public/light-bootstrap-dashboard-master/assets/img/new_logo.png +0 -0
  142. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-1.jpg +0 -0
  143. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-2.jpg +0 -0
  144. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-3.jpg +0 -0
  145. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-4.jpg +0 -0
  146. data/public/light-bootstrap-dashboard-master/assets/img/sidebar-5.jpg +0 -0
  147. data/public/light-bootstrap-dashboard-master/assets/img/tim_80x80.png +0 -0
  148. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-checkbox-radio-switch.js +0 -502
  149. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-notify.js +0 -404
  150. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap-select.js +0 -438
  151. data/public/light-bootstrap-dashboard-master/assets/js/bootstrap.min.js +0 -7
  152. data/public/light-bootstrap-dashboard-master/assets/js/chartist.min.js +0 -9
  153. data/public/light-bootstrap-dashboard-master/assets/js/demo.js +0 -152
  154. data/public/light-bootstrap-dashboard-master/assets/js/jquery-1.10.2.js +0 -9789
  155. data/public/light-bootstrap-dashboard-master/assets/js/light-bootstrap-dashboard.js +0 -179
  156. data/public/logo-localtower-white-300.png +0 -0
  157. data/public/logo-localtower-white.png +0 -0
  158. data/public/logo-localtower.png +0 -0
  159. data/public/vendor/font-awesome.min.css +0 -4
  160. data/public/vendor/highlight-js-default.min.css +0 -9
  161. data/spec/dummy/db/migrate/20221115190039_create_users.rb +0 -13
  162. data/spec/dummy/db/migrate/20221115193020_change_users.rb +0 -8
  163. data/spec/dummy/db/migrate/20221115193532_change_users_at1668540931.rb +0 -5
  164. data/spec/dummy/db/migrate/20221115193605_change_users_at1668540964.rb +0 -5
  165. data/spec/dummy/db/migrate/20221115193637_change_users_at1668540996.rb +0 -5
  166. data/spec/dummy/db/migrate/20221115193642_change_users_at1668541001.rb +0 -5
  167. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/-Y/-YOiiBKqc2UODHFjctm8xc7xFoZaL7zOjWQj6qQ2wyE.cache +0 -1
  168. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/-d/-dwueM4vmPt8L51S3jeSyg_AjGDcj0GUN6pDpCA1gCg.cache +0 -3
  169. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/0g/0gaJnJQdtd2ACbihXxn8OnjLWlDjnQ_WxfgOpbiLzhg.cache +0 -1
  170. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/0r/0rFCsCV9kZnEYtZZ6sfig8329OU31bqjecDFqSVank8.cache +0 -1
  171. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/1J/1J2k_CpnQE3d-PZAQwOVGQALGkta4qVvhdsKjgG0e4Q.cache +0 -0
  172. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/2p/2pYVH2Z_syqh6ok8QYxJNKxXpx1Iwppf6JGElZI0gpw.cache +0 -0
  173. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/3W/3WBmqd-2V6q5N-jvbyp-tlcfn3aHYMwBppbOUm7x4qg.cache +0 -1
  174. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/4K/4KFPlHkhdDW0riGUmlbaR-kmDz6JUnQvY6fwW8qsdaE.cache +0 -3
  175. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/6x/6xMeRWmLpNK_flx6-JA3KazvUxSCxyPxHv9Zm3eC26Q.cache +0 -1
  176. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/7d/7dNqI_dCDJLJmI1oM4xwFp9nRRNOem-4P4OD7PMyz2E.cache +0 -0
  177. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/8X/8XquhxVcp5A8QquLtxO8NgKTMJch0eqQmzFmRGIZP6I.cache +0 -1
  178. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ah/AhdfXXtU63kXS4TnsH2Vi1yWgVkIEeV8Z8XA68hrNQc.cache +0 -0
  179. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Bt/BtAePnwLSGw82xUGI7wuhWDfuwarOQVS91YqCsweMcs.cache +0 -0
  180. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Bx/BxzoG0KxeNLac4xTNeJv3qfeytbNBw58xj2zD-xdbrE.cache +0 -2
  181. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/CC/CCD0ROPX0yxHwNpVZmuP8ZNtgQpaVCMXpdzC0Wb5n24.cache +0 -1
  182. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/DS/DS43oxBg6K5PMWLn2mTy_4EnxI03ehHkxpjV7NCi8yM.cache +0 -1
  183. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Do/Do83AoOat5W-c1g7piDGy2GMmffsY6JY0Qfuh5PY3GM.cache +0 -2
  184. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/EI/EI0Nxk-VRATWstMuVCVc0_GdYlQ-a0dx6n2g0l3vIik.cache +0 -0
  185. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/EN/ENhJnzJAU2IK-7aHqubj9N8Jo_UTmjG_VEQqyIkolQ8.cache +0 -1
  186. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Fc/FcS6VUHN3Bd4pHGqd5NHA8jA4OLwWrU94s3b4GGxX9c.cache +0 -1
  187. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/G0/G0kukI-r0q0Vbrg6e_jnYJoYcOX8K__h-mwKbCf4twE.cache +0 -0
  188. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/I1/I1Jw08-mz8xzgrgi6giCzpf1UmzGTSbl4eJEw4DAoJM.cache +0 -1
  189. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/IV/IVOO1dXBmgjieDk__g57p6aYt0Z3CmfTa32jhegoyko.cache +0 -3
  190. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/JY/JYPmv5WP4wxdI9EKEEPkK_fVtqeSLfmint_5E8fQLQ8.cache +0 -1
  191. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/MX/MXI3KxaQPZGImSvCNZ_TbQVruWCJ3E0xiVxza1ZCAjM.cache +0 -1
  192. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/OU/OUoioCqXALK909jXPV3VSyCJIdNC7bsogUfdnRTpc5o.cache +0 -1
  193. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/PH/PHjtqNLUPAUDiSlu5AbPjlIo20mOGNm0uNjMLhX2NvM.cache +0 -0
  194. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/RC/RC9vfALY5K634pTeau0BAhTHl7d5_5yA3tM-QTLiKtI.cache +0 -0
  195. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/RG/RG1PrmlixwaUlG8BV0kcm_3F7OQekxsrLYjBdf403-k.cache +0 -2
  196. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ut/UtoMO6n6FHTpRCGk9VfxlfTI2Ao2GYJ_6kMzx3B9VH8.cache +0 -1
  197. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/VE/VExnbpDk3LxYdPk3htUrZQXPI8NK_zlKtSFfVXJlxU4.cache +0 -1
  198. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Wm/WmKTjykiU-Tx_Faf5zduEeEQ-DozAs5omKToM2l1cZM.cache +0 -0
  199. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/X-/X-KjhDPd0nI155N_FaxFSgaOiYo0_ytqlmkBlLM7ayw.cache +0 -1
  200. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/XX/XXVhj-O91tJ5c8pz7DQlTABOv8TIRVg5haw9VOq9HuI.cache +0 -1
  201. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/YC/YCiifo5NCMwDChFqYFiV4EaYEx8hy3Efle1PsGbIdak.cache +0 -1
  202. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Ya/YayMISAqD-Y3vBFywwKrXbUovGf5o77HUF5s8mnQgO0.cache +0 -0
  203. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/Zl/Zl-NEb0aDLmZ9gN4gdY1OYlbUXD4JhkFY_y23m55zmo.cache +0 -0
  204. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/_h/_hnjPptBeD3GP5B0iJR6pvyVkiMiq-o2TxaYmGf9KJo.cache +0 -3
  205. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/_p/_poEF6QbTPYJiQCFGoXxIXjmvcn6T0I87ElzJGHguk0.cache +0 -1
  206. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/aa/aaSj2zt8ddc87nZqTpOI9gRCKVnoalXKFBww7t4t3Kg.cache +0 -0
  207. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/bZ/bZHWUkrOLp0WM_Ogo36Qjt4cxDt-rOFgtcj4LNB-BVE.cache +0 -1
  208. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/cP/cPSNG_663TNT944Rke919luRS6FtpMwVc_7aDph645w.cache +0 -1
  209. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ce/ceq8fcZGIoqWrCl9vrCRrywEdx42iy9PrGG9CwFSIF4.cache +0 -0
  210. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/cl/cljhP0Jc018nLnG1rpdg-FUf6mlIqrQYvXTNXTNG9Bw.cache +0 -0
  211. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/dm/dmod3fTZdoKso2FGM5RTQtb4kTB6vywsiXLWDygYFN4.cache +0 -1
  212. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/dy/dySDGcUTqlKx2MTvOmIEP-WzhyhCfU5xhN9qgxbz3rI.cache +0 -0
  213. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gQ/gQYdmEzbLjTcFCnsfzXzEmeminOchF263snAk3IvXM0.cache +0 -1
  214. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gh/ghvuMAqccBGljlmEaI3Gt5tH5rEg6hseKYMYfRMkHdY.cache +0 -1
  215. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/gt/gt8QC7k92A4hXA3HlCpQulW73tqd6x63I3uT-YrGMj0.cache +0 -1
  216. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/hf/hfVg-y7dPSQKbb7V3I7M5w7IpOhDiIB2H31d2tmbZMU.cache +0 -0
  217. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/iF/iFLwyhZIu1Jxm77NUT2qWeTDMmyELW4U85t9rGE_KVg.cache +0 -0
  218. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/kF/kFlIcBBnSyKE00OjpM90pqSn93mLMUv9esz86nrO-Cs.cache +0 -1
  219. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ma/MazNt_5OaYexRuZnccZZ_7AONlxn1a4W3KdWyHyBdws.cache +0 -0
  220. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/ma/ma3w08gnDTeqwY2-C9BlToxA6-AS8bvXlu-nBiz0UYs.cache +0 -1
  221. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +0 -2
  222. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +0 -2
  223. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/pv/pv6tV3CDkIAmLXdU8EPLlNEkXAKJPufVD4VP30o4fWo.cache +0 -0
  224. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/qP/qPmv5snMrDw830S6hSICDcnIy7kVEWoFKXhGKT38lG4.cache +0 -2
  225. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/sY/sYvTb1uPWWmnHJNXKuW_xSco-aUb-rN2f0J35zSIzuc.cache +0 -1
  226. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/su/suQ_jjDxRiIn4VEqFJYKaBWJILaeGKBvoTv49XNX0vo.cache +0 -1
  227. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/u8/u8IrW5IIQ7espwk2Vpk23zheL9YZA0tnbKq9X7E-WA0.cache +0 -1
  228. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/wh/whzETExjcZCkn4msasD2aylgfhfpKPZrNxTkY-SOIDg.cache +0 -2
  229. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache +0 -2
  230. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/y6/y6oxsJD3pAY9ph1_5M-77uiEjTVw8BheLZNygCKPm1g.cache +0 -1
  231. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/yH/yHZ-a1J23ZCf2n5mEHINMz23Iec2cLGTKauW7k4yGTE.cache +0 -0
  232. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/z7/z7KfUWYoSaGq8tQ5mbHwyfXyT3Pa4FWKJswHcIdJuds.cache +0 -1
  233. data/spec/dummy/tmp/cache/assets/sprockets/v4.0.0/zu/zuExWc5WHxeOUPZUKHl9a9ZRmN50g7jMOD28macn6M0.cache +0 -0
  234. data/spec/lib/localtower/generators/relation_spec.rb +0 -65
@@ -0,0 +1,716 @@
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;