uibox 0.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 (79) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +3 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/javascripts/uibox/application.js +13 -0
  6. data/app/assets/stylesheets/uibox/application.css +15 -0
  7. data/app/controllers/uibox/application_controller.rb +4 -0
  8. data/app/controllers/uibox/pages_controller.rb +11 -0
  9. data/app/helpers/uibox/application_helper.rb +4 -0
  10. data/app/models/uibox/box.rb +4 -0
  11. data/app/models/uibox/content.rb +12 -0
  12. data/app/models/uibox/content_translation.rb +4 -0
  13. data/app/models/uibox/element.rb +4 -0
  14. data/app/models/uibox/page.rb +4 -0
  15. data/app/views/layouts/uibox/application.html.haml +11 -0
  16. data/app/views/uibox/pages/index.html.haml +2 -0
  17. data/app/views/uibox/pages/show.html.haml +2 -0
  18. data/config/routes.rb +4 -0
  19. data/db/migrate/20150501162907_create_uibox_contents.rb +33 -0
  20. data/db/migrate/20150501163248_create_uibox_pages.rb +13 -0
  21. data/db/migrate/20150501163401_create_uibox_boxes.rb +13 -0
  22. data/db/migrate/20150501163411_create_uibox_elements.rb +13 -0
  23. data/lib/tasks/uibox_tasks.rake +4 -0
  24. data/lib/uibox.rb +5 -0
  25. data/lib/uibox/all.rb +6 -0
  26. data/lib/uibox/engine.rb +23 -0
  27. data/lib/uibox/version.rb +3 -0
  28. data/test/dummy/README.rdoc +28 -0
  29. data/test/dummy/Rakefile +6 -0
  30. data/test/dummy/app/assets/javascripts/application.js +13 -0
  31. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  32. data/test/dummy/app/controllers/application_controller.rb +5 -0
  33. data/test/dummy/app/helpers/application_helper.rb +2 -0
  34. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  35. data/test/dummy/bin/bundle +3 -0
  36. data/test/dummy/bin/rails +4 -0
  37. data/test/dummy/bin/rake +4 -0
  38. data/test/dummy/bin/setup +29 -0
  39. data/test/dummy/config.ru +4 -0
  40. data/test/dummy/config/application.rb +26 -0
  41. data/test/dummy/config/boot.rb +5 -0
  42. data/test/dummy/config/database.yml +25 -0
  43. data/test/dummy/config/environment.rb +5 -0
  44. data/test/dummy/config/environments/development.rb +41 -0
  45. data/test/dummy/config/environments/production.rb +79 -0
  46. data/test/dummy/config/environments/test.rb +42 -0
  47. data/test/dummy/config/initializers/assets.rb +11 -0
  48. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  49. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  50. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  51. data/test/dummy/config/initializers/inflections.rb +16 -0
  52. data/test/dummy/config/initializers/mime_types.rb +4 -0
  53. data/test/dummy/config/initializers/session_store.rb +3 -0
  54. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  55. data/test/dummy/config/locales/en.yml +23 -0
  56. data/test/dummy/config/routes.rb +3 -0
  57. data/test/dummy/config/secrets.yml +22 -0
  58. data/test/dummy/db/development.sqlite3 +0 -0
  59. data/test/dummy/db/schema.rb +93 -0
  60. data/test/dummy/db/test.sqlite3 +0 -0
  61. data/test/dummy/log/development.log +2195 -0
  62. data/test/dummy/log/test.log +1227 -0
  63. data/test/dummy/public/404.html +67 -0
  64. data/test/dummy/public/422.html +67 -0
  65. data/test/dummy/public/500.html +66 -0
  66. data/test/dummy/public/favicon.ico +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/19f412dd069a88d3d531e2f3590f0a59 +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/1f6186c2c00415b6f79708b663df55fb +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/2ff2be41326cd8f9f6c32f179be121c1 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/3ca0e5fae486ab42d8d46f6065142af7 +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/5906a8a8070a497708e615de4580c1ad +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/80f399a5f8f658b6e0db838f67a4499f +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/8783475c9b048884f2c6cb35fdc58d12 +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/a7850067d821ba57e7c4275fc2d7168a +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/db4b20bdee3762bb2de10a061869a137 +0 -0
  76. data/test/integration/navigation_test.rb +10 -0
  77. data/test/test_helper.rb +20 -0
  78. data/test/uibox_test.rb +7 -0
  79. metadata +902 -0
@@ -0,0 +1,2195 @@
1
+
2
+
3
+ Started GET "/users/sign_up" for ::1 at 2015-05-01 10:14:28 -0600
4
+
5
+ ActionController::RoutingError (No route matches [GET] "/users/sign_up"):
6
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
9
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
10
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
11
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
12
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
13
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
14
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
15
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
16
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
17
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
18
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
19
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
20
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
21
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
22
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
23
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
24
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
25
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
26
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
27
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
28
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
29
+
30
+
31
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
32
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
33
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
34
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.2ms)
35
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms)
36
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (23.0ms)
37
+
38
+
39
+ Started GET "/" for ::1 at 2015-05-01 10:14:35 -0600
40
+ Processing by Rails::WelcomeController#index as HTML
41
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/railties-4.2.1/lib/rails/templates/rails/welcome/index.html.erb (0.4ms)
42
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
43
+  (17.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
44
+  (0.0ms) select sqlite_version(*)
45
+  (16.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
46
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
47
+ Migrating to CreateUiboxContents (20150501162907)
48
+  (0.0ms) begin transaction
49
+  (0.2ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
50
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
51
+  (0.1ms) SELECT sql
52
+ FROM sqlite_master
53
+ WHERE name='index_uibox_contents_on_active' AND type='index'
54
+ UNION ALL
55
+ SELECT sql
56
+ FROM sqlite_temp_master
57
+ WHERE name='index_uibox_contents_on_active' AND type='index'
58
+
59
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
60
+  (0.0ms) SELECT sql
61
+ FROM sqlite_master
62
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
63
+ UNION ALL
64
+ SELECT sql
65
+ FROM sqlite_temp_master
66
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
67
+
68
+  (0.0ms)  SELECT sql
69
+ FROM sqlite_master
70
+ WHERE name='index_uibox_contents_on_active' AND type='index'
71
+ UNION ALL
72
+ SELECT sql
73
+ FROM sqlite_temp_master
74
+ WHERE name='index_uibox_contents_on_active' AND type='index'
75
+ 
76
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
77
+  (0.0ms)  SELECT sql
78
+ FROM sqlite_master
79
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
80
+ UNION ALL
81
+ SELECT sql
82
+ FROM sqlite_temp_master
83
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
84
+ 
85
+  (0.0ms) SELECT sql
86
+ FROM sqlite_master
87
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
88
+ UNION ALL
89
+ SELECT sql
90
+ FROM sqlite_temp_master
91
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
92
+
93
+  (0.0ms)  SELECT sql
94
+ FROM sqlite_master
95
+ WHERE name='index_uibox_contents_on_active' AND type='index'
96
+ UNION ALL
97
+ SELECT sql
98
+ FROM sqlite_temp_master
99
+ WHERE name='index_uibox_contents_on_active' AND type='index'
100
+ 
101
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
102
+  (0.1ms) rollback transaction
103
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
104
+ Migrating to CreateUiboxContents (20150501162907)
105
+  (0.0ms) begin transaction
106
+  (0.2ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
107
+  (0.0ms) select sqlite_version(*)
108
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
109
+  (0.1ms) SELECT sql
110
+ FROM sqlite_master
111
+ WHERE name='index_uibox_contents_on_active' AND type='index'
112
+ UNION ALL
113
+ SELECT sql
114
+ FROM sqlite_temp_master
115
+ WHERE name='index_uibox_contents_on_active' AND type='index'
116
+
117
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
118
+  (0.0ms) SELECT sql
119
+ FROM sqlite_master
120
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
121
+ UNION ALL
122
+ SELECT sql
123
+ FROM sqlite_temp_master
124
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
125
+
126
+  (0.0ms)  SELECT sql
127
+ FROM sqlite_master
128
+ WHERE name='index_uibox_contents_on_active' AND type='index'
129
+ UNION ALL
130
+ SELECT sql
131
+ FROM sqlite_temp_master
132
+ WHERE name='index_uibox_contents_on_active' AND type='index'
133
+ 
134
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
135
+  (0.1ms)  SELECT sql
136
+ FROM sqlite_master
137
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
138
+ UNION ALL
139
+ SELECT sql
140
+ FROM sqlite_temp_master
141
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
142
+ 
143
+  (0.0ms) SELECT sql
144
+ FROM sqlite_master
145
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
146
+ UNION ALL
147
+ SELECT sql
148
+ FROM sqlite_temp_master
149
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
150
+
151
+  (0.0ms)  SELECT sql
152
+ FROM sqlite_master
153
+ WHERE name='index_uibox_contents_on_active' AND type='index'
154
+ UNION ALL
155
+ SELECT sql
156
+ FROM sqlite_temp_master
157
+ WHERE name='index_uibox_contents_on_active' AND type='index'
158
+ 
159
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
160
+  (0.1ms) rollback transaction
161
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
162
+ Migrating to CreateUiboxContents (20150501162907)
163
+  (0.0ms) begin transaction
164
+  (0.2ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
165
+  (0.0ms) select sqlite_version(*)
166
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
167
+  (0.1ms) SELECT sql
168
+ FROM sqlite_master
169
+ WHERE name='index_uibox_contents_on_active' AND type='index'
170
+ UNION ALL
171
+ SELECT sql
172
+ FROM sqlite_temp_master
173
+ WHERE name='index_uibox_contents_on_active' AND type='index'
174
+
175
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
176
+  (0.0ms) SELECT sql
177
+ FROM sqlite_master
178
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
179
+ UNION ALL
180
+ SELECT sql
181
+ FROM sqlite_temp_master
182
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
183
+
184
+  (0.0ms)  SELECT sql
185
+ FROM sqlite_master
186
+ WHERE name='index_uibox_contents_on_active' AND type='index'
187
+ UNION ALL
188
+ SELECT sql
189
+ FROM sqlite_temp_master
190
+ WHERE name='index_uibox_contents_on_active' AND type='index'
191
+ 
192
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
193
+  (0.0ms)  SELECT sql
194
+ FROM sqlite_master
195
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
196
+ UNION ALL
197
+ SELECT sql
198
+ FROM sqlite_temp_master
199
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
200
+ 
201
+  (0.0ms) SELECT sql
202
+ FROM sqlite_master
203
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
204
+ UNION ALL
205
+ SELECT sql
206
+ FROM sqlite_temp_master
207
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
208
+
209
+  (0.0ms)  SELECT sql
210
+ FROM sqlite_master
211
+ WHERE name='index_uibox_contents_on_active' AND type='index'
212
+ UNION ALL
213
+ SELECT sql
214
+ FROM sqlite_temp_master
215
+ WHERE name='index_uibox_contents_on_active' AND type='index'
216
+ 
217
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
218
+  (0.1ms) rollback transaction
219
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
220
+ Migrating to CreateUiboxContents (20150501162907)
221
+  (0.0ms) begin transaction
222
+  (0.2ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
223
+  (0.0ms) select sqlite_version(*)
224
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
225
+  (0.0ms) SELECT sql
226
+ FROM sqlite_master
227
+ WHERE name='index_uibox_contents_on_active' AND type='index'
228
+ UNION ALL
229
+ SELECT sql
230
+ FROM sqlite_temp_master
231
+ WHERE name='index_uibox_contents_on_active' AND type='index'
232
+
233
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
234
+  (0.0ms) SELECT sql
235
+ FROM sqlite_master
236
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
237
+ UNION ALL
238
+ SELECT sql
239
+ FROM sqlite_temp_master
240
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
241
+
242
+  (0.0ms)  SELECT sql
243
+ FROM sqlite_master
244
+ WHERE name='index_uibox_contents_on_active' AND type='index'
245
+ UNION ALL
246
+ SELECT sql
247
+ FROM sqlite_temp_master
248
+ WHERE name='index_uibox_contents_on_active' AND type='index'
249
+ 
250
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
251
+  (0.0ms)  SELECT sql
252
+ FROM sqlite_master
253
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
254
+ UNION ALL
255
+ SELECT sql
256
+ FROM sqlite_temp_master
257
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
258
+ 
259
+  (0.0ms) SELECT sql
260
+ FROM sqlite_master
261
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
262
+ UNION ALL
263
+ SELECT sql
264
+ FROM sqlite_temp_master
265
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
266
+
267
+  (0.0ms)  SELECT sql
268
+ FROM sqlite_master
269
+ WHERE name='index_uibox_contents_on_active' AND type='index'
270
+ UNION ALL
271
+ SELECT sql
272
+ FROM sqlite_temp_master
273
+ WHERE name='index_uibox_contents_on_active' AND type='index'
274
+ 
275
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
276
+  (0.1ms) rollback transaction
277
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
278
+ Migrating to CreateUiboxContents (20150501162907)
279
+  (0.0ms) begin transaction
280
+  (0.2ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
281
+  (0.0ms) select sqlite_version(*)
282
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
283
+  (0.1ms) SELECT sql
284
+ FROM sqlite_master
285
+ WHERE name='index_uibox_contents_on_active' AND type='index'
286
+ UNION ALL
287
+ SELECT sql
288
+ FROM sqlite_temp_master
289
+ WHERE name='index_uibox_contents_on_active' AND type='index'
290
+
291
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
292
+  (0.0ms) SELECT sql
293
+ FROM sqlite_master
294
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
295
+ UNION ALL
296
+ SELECT sql
297
+ FROM sqlite_temp_master
298
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
299
+
300
+  (0.0ms)  SELECT sql
301
+ FROM sqlite_master
302
+ WHERE name='index_uibox_contents_on_active' AND type='index'
303
+ UNION ALL
304
+ SELECT sql
305
+ FROM sqlite_temp_master
306
+ WHERE name='index_uibox_contents_on_active' AND type='index'
307
+ 
308
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
309
+  (0.0ms)  SELECT sql
310
+ FROM sqlite_master
311
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
312
+ UNION ALL
313
+ SELECT sql
314
+ FROM sqlite_temp_master
315
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
316
+ 
317
+  (0.0ms) SELECT sql
318
+ FROM sqlite_master
319
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
320
+ UNION ALL
321
+ SELECT sql
322
+ FROM sqlite_temp_master
323
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
324
+
325
+  (0.1ms)  SELECT sql
326
+ FROM sqlite_master
327
+ WHERE name='index_uibox_contents_on_active' AND type='index'
328
+ UNION ALL
329
+ SELECT sql
330
+ FROM sqlite_temp_master
331
+ WHERE name='index_uibox_contents_on_active' AND type='index'
332
+ 
333
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
334
+  (0.1ms) rollback transaction
335
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
336
+ Migrating to CreateUiboxContents (20150501162907)
337
+  (0.0ms) begin transaction
338
+  (0.2ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
339
+  (0.0ms) select sqlite_version(*)
340
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
341
+  (0.1ms) SELECT sql
342
+ FROM sqlite_master
343
+ WHERE name='index_uibox_contents_on_active' AND type='index'
344
+ UNION ALL
345
+ SELECT sql
346
+ FROM sqlite_temp_master
347
+ WHERE name='index_uibox_contents_on_active' AND type='index'
348
+
349
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
350
+  (0.0ms) SELECT sql
351
+ FROM sqlite_master
352
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
353
+ UNION ALL
354
+ SELECT sql
355
+ FROM sqlite_temp_master
356
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
357
+
358
+  (0.0ms)  SELECT sql
359
+ FROM sqlite_master
360
+ WHERE name='index_uibox_contents_on_active' AND type='index'
361
+ UNION ALL
362
+ SELECT sql
363
+ FROM sqlite_temp_master
364
+ WHERE name='index_uibox_contents_on_active' AND type='index'
365
+ 
366
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
367
+  (0.0ms)  SELECT sql
368
+ FROM sqlite_master
369
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
370
+ UNION ALL
371
+ SELECT sql
372
+ FROM sqlite_temp_master
373
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
374
+ 
375
+  (0.0ms) SELECT sql
376
+ FROM sqlite_master
377
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
378
+ UNION ALL
379
+ SELECT sql
380
+ FROM sqlite_temp_master
381
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
382
+
383
+  (0.1ms)  SELECT sql
384
+ FROM sqlite_master
385
+ WHERE name='index_uibox_contents_on_active' AND type='index'
386
+ UNION ALL
387
+ SELECT sql
388
+ FROM sqlite_temp_master
389
+ WHERE name='index_uibox_contents_on_active' AND type='index'
390
+ 
391
+  (0.1ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
392
+  (0.1ms) CREATE TABLE "uibox_content_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uibox_content_id" integer NOT NULL, "locale" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
393
+  (0.1ms) ALTER TABLE "uibox_content_translations" ADD "title" varchar DEFAULT ''
394
+  (0.1ms) ALTER TABLE "uibox_content_translations" ADD "name" varchar DEFAULT ''
395
+  (0.1ms) ALTER TABLE "uibox_content_translations" ADD "description" text DEFAULT ''
396
+  (0.1ms) ALTER TABLE "uibox_content_translations" ADD "text_raw" text DEFAULT ''
397
+  (0.1ms) ALTER TABLE "uibox_content_translations" ADD "text_html" text DEFAULT ''
398
+  (0.1ms) CREATE INDEX "index_uibox_content_translations_on_uibox_content_id" ON "uibox_content_translations" ("uibox_content_id")
399
+  (0.0ms) SELECT sql
400
+ FROM sqlite_master
401
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
402
+ UNION ALL
403
+ SELECT sql
404
+ FROM sqlite_temp_master
405
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
406
+
407
+  (0.1ms) CREATE INDEX "index_uibox_content_translations_on_locale" ON "uibox_content_translations" ("locale")
408
+  (0.1ms) ALTER TABLE "uibox_content_translations" ADD "active" integer
409
+  (0.1ms) ALTER TABLE "uibox_content_translations" ADD "type" varchar
410
+  (0.1ms) ALTER TABLE "uibox_content_translations" ADD "meta" varchar
411
+  (0.0ms)  SELECT sql
412
+ FROM sqlite_master
413
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
414
+ UNION ALL
415
+ SELECT sql
416
+ FROM sqlite_temp_master
417
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
418
+ 
419
+  (0.0ms) SELECT sql
420
+ FROM sqlite_master
421
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
422
+ UNION ALL
423
+ SELECT sql
424
+ FROM sqlite_temp_master
425
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
426
+
427
+  (0.1ms) CREATE INDEX "index_uibox_content_translations_on_active" ON "uibox_content_translations" ("active")
428
+  (0.0ms) SELECT sql
429
+ FROM sqlite_master
430
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
431
+ UNION ALL
432
+ SELECT sql
433
+ FROM sqlite_temp_master
434
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
435
+
436
+  (0.0ms)  SELECT sql
437
+ FROM sqlite_master
438
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
439
+ UNION ALL
440
+ SELECT sql
441
+ FROM sqlite_temp_master
442
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
443
+ 
444
+  (0.0ms) SELECT sql
445
+ FROM sqlite_master
446
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
447
+ UNION ALL
448
+ SELECT sql
449
+ FROM sqlite_temp_master
450
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
451
+
452
+  (0.1ms) CREATE INDEX "index_uibox_content_translations_on_type" ON "uibox_content_translations" ("type")
453
+  (0.0ms) SELECT sql
454
+ FROM sqlite_master
455
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
456
+ UNION ALL
457
+ SELECT sql
458
+ FROM sqlite_temp_master
459
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
460
+
461
+  (0.0ms)  SELECT sql
462
+ FROM sqlite_master
463
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
464
+ UNION ALL
465
+ SELECT sql
466
+ FROM sqlite_temp_master
467
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
468
+ 
469
+  (0.0ms) SELECT sql
470
+ FROM sqlite_master
471
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
472
+ UNION ALL
473
+ SELECT sql
474
+ FROM sqlite_temp_master
475
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
476
+
477
+  (0.0ms)  SELECT sql
478
+ FROM sqlite_master
479
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
480
+ UNION ALL
481
+ SELECT sql
482
+ FROM sqlite_temp_master
483
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
484
+ 
485
+  (0.1ms) CREATE INDEX "index_uibox_content_translations_on_name" ON "uibox_content_translations" ("name")
486
+  (0.0ms)  SELECT sql
487
+ FROM sqlite_master
488
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
489
+ UNION ALL
490
+ SELECT sql
491
+ FROM sqlite_temp_master
492
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
493
+ 
494
+  (0.0ms) SELECT sql
495
+ FROM sqlite_master
496
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
497
+ UNION ALL
498
+ SELECT sql
499
+ FROM sqlite_temp_master
500
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
501
+
502
+  (0.0ms)  SELECT sql
503
+ FROM sqlite_master
504
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
505
+ UNION ALL
506
+ SELECT sql
507
+ FROM sqlite_temp_master
508
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
509
+ 
510
+  (0.0ms) SELECT sql
511
+ FROM sqlite_master
512
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
513
+ UNION ALL
514
+ SELECT sql
515
+ FROM sqlite_temp_master
516
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
517
+
518
+  (0.0ms)  SELECT sql
519
+ FROM sqlite_master
520
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
521
+ UNION ALL
522
+ SELECT sql
523
+ FROM sqlite_temp_master
524
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
525
+ 
526
+  (0.1ms) CREATE INDEX "index_uibox_content_translations_on_title" ON "uibox_content_translations" ("title")
527
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150501162907"]]
528
+  (17.5ms) commit transaction
529
+ Migrating to CreateUiboxPages (20150501163248)
530
+  (0.0ms) begin transaction
531
+  (0.2ms) CREATE TABLE "uibox_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
532
+  (0.1ms) CREATE INDEX "index_uibox_pages_on_active" ON "uibox_pages" ("active")
533
+  (0.0ms) SELECT sql
534
+ FROM sqlite_master
535
+ WHERE name='index_uibox_pages_on_active' AND type='index'
536
+ UNION ALL
537
+ SELECT sql
538
+ FROM sqlite_temp_master
539
+ WHERE name='index_uibox_pages_on_active' AND type='index'
540
+
541
+  (0.1ms) CREATE INDEX "index_uibox_pages_on_type" ON "uibox_pages" ("type")
542
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150501163248"]]
543
+  (17.2ms) commit transaction
544
+ Migrating to CreateUiboxBoxes (20150501163401)
545
+  (0.0ms) begin transaction
546
+  (0.2ms) CREATE TABLE "uibox_boxes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
547
+  (0.1ms) CREATE INDEX "index_uibox_boxes_on_active" ON "uibox_boxes" ("active")
548
+  (0.1ms)  SELECT sql
549
+ FROM sqlite_master
550
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
551
+ UNION ALL
552
+ SELECT sql
553
+ FROM sqlite_temp_master
554
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
555
+ 
556
+  (0.1ms) CREATE INDEX "index_uibox_boxes_on_type" ON "uibox_boxes" ("type")
557
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150501163401"]]
558
+  (16.8ms) commit transaction
559
+ Migrating to CreateUiboxElements (20150501163411)
560
+  (0.0ms) begin transaction
561
+  (0.1ms) CREATE TABLE "uibox_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
562
+  (0.1ms) CREATE INDEX "index_uibox_elements_on_active" ON "uibox_elements" ("active")
563
+  (0.1ms) SELECT sql
564
+ FROM sqlite_master
565
+ WHERE name='index_uibox_elements_on_active' AND type='index'
566
+ UNION ALL
567
+ SELECT sql
568
+ FROM sqlite_temp_master
569
+ WHERE name='index_uibox_elements_on_active' AND type='index'
570
+
571
+  (0.1ms) CREATE INDEX "index_uibox_elements_on_type" ON "uibox_elements" ("type")
572
+ SQL (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150501163411"]]
573
+  (12.4ms) commit transaction
574
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
575
+  (0.1ms)  SELECT sql
576
+ FROM sqlite_master
577
+ WHERE name='index_uibox_boxes_on_type' AND type='index'
578
+ UNION ALL
579
+ SELECT sql
580
+ FROM sqlite_temp_master
581
+ WHERE name='index_uibox_boxes_on_type' AND type='index'
582
+ 
583
+  (0.1ms) SELECT sql
584
+ FROM sqlite_master
585
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
586
+ UNION ALL
587
+ SELECT sql
588
+ FROM sqlite_temp_master
589
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
590
+
591
+  (0.1ms)  SELECT sql
592
+ FROM sqlite_master
593
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
594
+ UNION ALL
595
+ SELECT sql
596
+ FROM sqlite_temp_master
597
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
598
+ 
599
+  (0.1ms) SELECT sql
600
+ FROM sqlite_master
601
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
602
+ UNION ALL
603
+ SELECT sql
604
+ FROM sqlite_temp_master
605
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
606
+
607
+  (0.1ms)  SELECT sql
608
+ FROM sqlite_master
609
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
610
+ UNION ALL
611
+ SELECT sql
612
+ FROM sqlite_temp_master
613
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
614
+ 
615
+  (0.1ms) SELECT sql
616
+ FROM sqlite_master
617
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
618
+ UNION ALL
619
+ SELECT sql
620
+ FROM sqlite_temp_master
621
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
622
+
623
+  (0.1ms)  SELECT sql
624
+ FROM sqlite_master
625
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
626
+ UNION ALL
627
+ SELECT sql
628
+ FROM sqlite_temp_master
629
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
630
+ 
631
+  (0.1ms) SELECT sql
632
+ FROM sqlite_master
633
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
634
+ UNION ALL
635
+ SELECT sql
636
+ FROM sqlite_temp_master
637
+ WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
638
+
639
+  (0.1ms)  SELECT sql
640
+ FROM sqlite_master
641
+ WHERE name='index_uibox_contents_on_type' AND type='index'
642
+ UNION ALL
643
+ SELECT sql
644
+ FROM sqlite_temp_master
645
+ WHERE name='index_uibox_contents_on_type' AND type='index'
646
+ 
647
+  (0.1ms) SELECT sql
648
+ FROM sqlite_master
649
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
650
+ UNION ALL
651
+ SELECT sql
652
+ FROM sqlite_temp_master
653
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
654
+
655
+  (0.1ms)  SELECT sql
656
+ FROM sqlite_master
657
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
658
+ UNION ALL
659
+ SELECT sql
660
+ FROM sqlite_temp_master
661
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
662
+ 
663
+  (0.1ms) SELECT sql
664
+ FROM sqlite_master
665
+ WHERE name='index_uibox_contents_on_active' AND type='index'
666
+ UNION ALL
667
+ SELECT sql
668
+ FROM sqlite_temp_master
669
+ WHERE name='index_uibox_contents_on_active' AND type='index'
670
+
671
+  (0.1ms)  SELECT sql
672
+ FROM sqlite_master
673
+ WHERE name='index_uibox_elements_on_type' AND type='index'
674
+ UNION ALL
675
+ SELECT sql
676
+ FROM sqlite_temp_master
677
+ WHERE name='index_uibox_elements_on_type' AND type='index'
678
+ 
679
+  (0.1ms) SELECT sql
680
+ FROM sqlite_master
681
+ WHERE name='index_uibox_elements_on_active' AND type='index'
682
+ UNION ALL
683
+ SELECT sql
684
+ FROM sqlite_temp_master
685
+ WHERE name='index_uibox_elements_on_active' AND type='index'
686
+
687
+  (0.1ms)  SELECT sql
688
+ FROM sqlite_master
689
+ WHERE name='index_uibox_pages_on_type' AND type='index'
690
+ UNION ALL
691
+ SELECT sql
692
+ FROM sqlite_temp_master
693
+ WHERE name='index_uibox_pages_on_type' AND type='index'
694
+ 
695
+  (0.1ms) SELECT sql
696
+ FROM sqlite_master
697
+ WHERE name='index_uibox_pages_on_active' AND type='index'
698
+ UNION ALL
699
+ SELECT sql
700
+ FROM sqlite_temp_master
701
+ WHERE name='index_uibox_pages_on_active' AND type='index'
702
+
703
+  (21.0ms) DROP TABLE "uibox_boxes"
704
+  (25.9ms) CREATE TABLE "uibox_boxes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
705
+  (0.1ms) select sqlite_version(*)
706
+  (20.1ms) CREATE INDEX "index_uibox_boxes_on_active" ON "uibox_boxes" ("active")
707
+  (0.1ms)  SELECT sql
708
+ FROM sqlite_master
709
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
710
+ UNION ALL
711
+ SELECT sql
712
+ FROM sqlite_temp_master
713
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
714
+ 
715
+  (18.7ms) CREATE INDEX "index_uibox_boxes_on_type" ON "uibox_boxes" ("type")
716
+  (18.8ms) DROP TABLE "uibox_content_translations"
717
+  (19.4ms) CREATE TABLE "uibox_content_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uibox_content_id" integer NOT NULL, "locale" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "title" varchar DEFAULT '', "name" varchar DEFAULT '', "description" text DEFAULT '', "text_raw" text DEFAULT '', "text_html" text DEFAULT '', "active" integer, "type" varchar, "meta" varchar)
718
+  (16.8ms) CREATE INDEX "index_uibox_content_translations_on_active" ON "uibox_content_translations" ("active")
719
+  (0.1ms) SELECT sql
720
+ FROM sqlite_master
721
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
722
+ UNION ALL
723
+ SELECT sql
724
+ FROM sqlite_temp_master
725
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
726
+
727
+  (16.7ms) CREATE INDEX "index_uibox_content_translations_on_locale" ON "uibox_content_translations" ("locale")
728
+  (0.1ms) SELECT sql
729
+ FROM sqlite_master
730
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
731
+ UNION ALL
732
+ SELECT sql
733
+ FROM sqlite_temp_master
734
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
735
+
736
+  (0.1ms)  SELECT sql
737
+ FROM sqlite_master
738
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
739
+ UNION ALL
740
+ SELECT sql
741
+ FROM sqlite_temp_master
742
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
743
+ 
744
+  (16.2ms) CREATE INDEX "index_uibox_content_translations_on_name" ON "uibox_content_translations" ("name")
745
+  (0.1ms)  SELECT sql
746
+ FROM sqlite_master
747
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
748
+ UNION ALL
749
+ SELECT sql
750
+ FROM sqlite_temp_master
751
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
752
+ 
753
+  (0.1ms) SELECT sql
754
+ FROM sqlite_master
755
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
756
+ UNION ALL
757
+ SELECT sql
758
+ FROM sqlite_temp_master
759
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
760
+
761
+  (0.1ms)  SELECT sql
762
+ FROM sqlite_master
763
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
764
+ UNION ALL
765
+ SELECT sql
766
+ FROM sqlite_temp_master
767
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
768
+ 
769
+  (16.2ms) CREATE INDEX "index_uibox_content_translations_on_title" ON "uibox_content_translations" ("title")
770
+  (0.1ms)  SELECT sql
771
+ FROM sqlite_master
772
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
773
+ UNION ALL
774
+ SELECT sql
775
+ FROM sqlite_temp_master
776
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
777
+ 
778
+  (0.1ms) SELECT sql
779
+ FROM sqlite_master
780
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
781
+ UNION ALL
782
+ SELECT sql
783
+ FROM sqlite_temp_master
784
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
785
+
786
+  (0.1ms)  SELECT sql
787
+ FROM sqlite_master
788
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
789
+ UNION ALL
790
+ SELECT sql
791
+ FROM sqlite_temp_master
792
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
793
+ 
794
+  (0.1ms) SELECT sql
795
+ FROM sqlite_master
796
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
797
+ UNION ALL
798
+ SELECT sql
799
+ FROM sqlite_temp_master
800
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
801
+
802
+  (16.0ms) CREATE INDEX "index_uibox_content_translations_on_type" ON "uibox_content_translations" ("type")
803
+  (0.1ms) SELECT sql
804
+ FROM sqlite_master
805
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
806
+ UNION ALL
807
+ SELECT sql
808
+ FROM sqlite_temp_master
809
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
810
+
811
+  (0.1ms)  SELECT sql
812
+ FROM sqlite_master
813
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
814
+ UNION ALL
815
+ SELECT sql
816
+ FROM sqlite_temp_master
817
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
818
+ 
819
+  (0.1ms) SELECT sql
820
+ FROM sqlite_master
821
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
822
+ UNION ALL
823
+ SELECT sql
824
+ FROM sqlite_temp_master
825
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
826
+
827
+  (0.1ms)  SELECT sql
828
+ FROM sqlite_master
829
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
830
+ UNION ALL
831
+ SELECT sql
832
+ FROM sqlite_temp_master
833
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
834
+ 
835
+  (0.1ms) SELECT sql
836
+ FROM sqlite_master
837
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
838
+ UNION ALL
839
+ SELECT sql
840
+ FROM sqlite_temp_master
841
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
842
+
843
+  (24.0ms) CREATE INDEX "index_uibox_content_translations_on_uibox_content_id" ON "uibox_content_translations" ("uibox_content_id")
844
+  (22.8ms) DROP TABLE "uibox_contents"
845
+  (21.1ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
846
+  (18.6ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
847
+  (0.1ms)  SELECT sql
848
+ FROM sqlite_master
849
+ WHERE name='index_uibox_contents_on_active' AND type='index'
850
+ UNION ALL
851
+ SELECT sql
852
+ FROM sqlite_temp_master
853
+ WHERE name='index_uibox_contents_on_active' AND type='index'
854
+ 
855
+  (17.2ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
856
+  (0.1ms)  SELECT sql
857
+ FROM sqlite_master
858
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
859
+ UNION ALL
860
+ SELECT sql
861
+ FROM sqlite_temp_master
862
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
863
+ 
864
+  (0.1ms) SELECT sql
865
+ FROM sqlite_master
866
+ WHERE name='index_uibox_contents_on_active' AND type='index'
867
+ UNION ALL
868
+ SELECT sql
869
+ FROM sqlite_temp_master
870
+ WHERE name='index_uibox_contents_on_active' AND type='index'
871
+
872
+  (17.6ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
873
+  (0.1ms) SELECT sql
874
+ FROM sqlite_master
875
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
876
+ UNION ALL
877
+ SELECT sql
878
+ FROM sqlite_temp_master
879
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
880
+
881
+  (0.1ms)  SELECT sql
882
+ FROM sqlite_master
883
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
884
+ UNION ALL
885
+ SELECT sql
886
+ FROM sqlite_temp_master
887
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
888
+ 
889
+  (0.1ms) SELECT sql
890
+ FROM sqlite_master
891
+ WHERE name='index_uibox_contents_on_active' AND type='index'
892
+ UNION ALL
893
+ SELECT sql
894
+ FROM sqlite_temp_master
895
+ WHERE name='index_uibox_contents_on_active' AND type='index'
896
+
897
+  (19.0ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
898
+  (16.2ms) DROP TABLE "uibox_elements"
899
+  (16.7ms) CREATE TABLE "uibox_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
900
+  (10.4ms) CREATE INDEX "index_uibox_elements_on_active" ON "uibox_elements" ("active")
901
+  (0.1ms)  SELECT sql
902
+ FROM sqlite_master
903
+ WHERE name='index_uibox_elements_on_active' AND type='index'
904
+ UNION ALL
905
+ SELECT sql
906
+ FROM sqlite_temp_master
907
+ WHERE name='index_uibox_elements_on_active' AND type='index'
908
+ 
909
+  (10.1ms) CREATE INDEX "index_uibox_elements_on_type" ON "uibox_elements" ("type")
910
+  (19.8ms) DROP TABLE "uibox_pages"
911
+  (20.1ms) CREATE TABLE "uibox_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
912
+  (18.9ms) CREATE INDEX "index_uibox_pages_on_active" ON "uibox_pages" ("active")
913
+  (0.1ms) SELECT sql
914
+ FROM sqlite_master
915
+ WHERE name='index_uibox_pages_on_active' AND type='index'
916
+ UNION ALL
917
+ SELECT sql
918
+ FROM sqlite_temp_master
919
+ WHERE name='index_uibox_pages_on_active' AND type='index'
920
+
921
+  (19.5ms) CREATE INDEX "index_uibox_pages_on_type" ON "uibox_pages" ("type")
922
+  (0.1ms) SELECT version FROM "schema_migrations"
923
+  (18.7ms) CREATE TABLE "uibox_boxes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
924
+  (0.0ms) select sqlite_version(*)
925
+  (18.1ms) CREATE INDEX "index_uibox_boxes_on_active" ON "uibox_boxes" ("active")
926
+  (0.1ms) SELECT sql
927
+ FROM sqlite_master
928
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
929
+ UNION ALL
930
+ SELECT sql
931
+ FROM sqlite_temp_master
932
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
933
+
934
+  (17.7ms) CREATE INDEX "index_uibox_boxes_on_type" ON "uibox_boxes" ("type")
935
+  (26.7ms) CREATE TABLE "uibox_content_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uibox_content_id" integer NOT NULL, "locale" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "title" varchar DEFAULT '', "name" varchar DEFAULT '', "description" text DEFAULT '', "text_raw" text DEFAULT '', "text_html" text DEFAULT '', "active" integer, "type" varchar, "meta" varchar)
936
+  (26.8ms) CREATE INDEX "index_uibox_content_translations_on_active" ON "uibox_content_translations" ("active")
937
+  (0.1ms) SELECT sql
938
+ FROM sqlite_master
939
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
940
+ UNION ALL
941
+ SELECT sql
942
+ FROM sqlite_temp_master
943
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
944
+
945
+  (29.3ms) CREATE INDEX "index_uibox_content_translations_on_locale" ON "uibox_content_translations" ("locale")
946
+  (0.1ms) SELECT sql
947
+ FROM sqlite_master
948
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
949
+ UNION ALL
950
+ SELECT sql
951
+ FROM sqlite_temp_master
952
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
953
+
954
+  (0.1ms)  SELECT sql
955
+ FROM sqlite_master
956
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
957
+ UNION ALL
958
+ SELECT sql
959
+ FROM sqlite_temp_master
960
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
961
+ 
962
+  (25.4ms) CREATE INDEX "index_uibox_content_translations_on_name" ON "uibox_content_translations" ("name")
963
+  (0.1ms)  SELECT sql
964
+ FROM sqlite_master
965
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
966
+ UNION ALL
967
+ SELECT sql
968
+ FROM sqlite_temp_master
969
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
970
+ 
971
+  (0.1ms) SELECT sql
972
+ FROM sqlite_master
973
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
974
+ UNION ALL
975
+ SELECT sql
976
+ FROM sqlite_temp_master
977
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
978
+
979
+  (0.1ms)  SELECT sql
980
+ FROM sqlite_master
981
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
982
+ UNION ALL
983
+ SELECT sql
984
+ FROM sqlite_temp_master
985
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
986
+ 
987
+  (19.9ms) CREATE INDEX "index_uibox_content_translations_on_title" ON "uibox_content_translations" ("title")
988
+  (0.1ms)  SELECT sql
989
+ FROM sqlite_master
990
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
991
+ UNION ALL
992
+ SELECT sql
993
+ FROM sqlite_temp_master
994
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
995
+ 
996
+  (0.1ms) SELECT sql
997
+ FROM sqlite_master
998
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
999
+ UNION ALL
1000
+ SELECT sql
1001
+ FROM sqlite_temp_master
1002
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1003
+
1004
+  (0.1ms)  SELECT sql
1005
+ FROM sqlite_master
1006
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1007
+ UNION ALL
1008
+ SELECT sql
1009
+ FROM sqlite_temp_master
1010
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1011
+ 
1012
+  (0.1ms) SELECT sql
1013
+ FROM sqlite_master
1014
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1015
+ UNION ALL
1016
+ SELECT sql
1017
+ FROM sqlite_temp_master
1018
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1019
+
1020
+  (17.8ms) CREATE INDEX "index_uibox_content_translations_on_type" ON "uibox_content_translations" ("type")
1021
+  (0.1ms) SELECT sql
1022
+ FROM sqlite_master
1023
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
1024
+ UNION ALL
1025
+ SELECT sql
1026
+ FROM sqlite_temp_master
1027
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
1028
+
1029
+  (0.1ms)  SELECT sql
1030
+ FROM sqlite_master
1031
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1032
+ UNION ALL
1033
+ SELECT sql
1034
+ FROM sqlite_temp_master
1035
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1036
+ 
1037
+  (0.1ms) SELECT sql
1038
+ FROM sqlite_master
1039
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1040
+ UNION ALL
1041
+ SELECT sql
1042
+ FROM sqlite_temp_master
1043
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1044
+
1045
+  (0.1ms)  SELECT sql
1046
+ FROM sqlite_master
1047
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1048
+ UNION ALL
1049
+ SELECT sql
1050
+ FROM sqlite_temp_master
1051
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1052
+ 
1053
+  (0.1ms) SELECT sql
1054
+ FROM sqlite_master
1055
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1056
+ UNION ALL
1057
+ SELECT sql
1058
+ FROM sqlite_temp_master
1059
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1060
+
1061
+  (19.2ms) CREATE INDEX "index_uibox_content_translations_on_uibox_content_id" ON "uibox_content_translations" ("uibox_content_id")
1062
+  (16.2ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1063
+  (12.2ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
1064
+  (0.1ms) SELECT sql
1065
+ FROM sqlite_master
1066
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1067
+ UNION ALL
1068
+ SELECT sql
1069
+ FROM sqlite_temp_master
1070
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1071
+
1072
+  (10.2ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
1073
+  (0.1ms) SELECT sql
1074
+ FROM sqlite_master
1075
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1076
+ UNION ALL
1077
+ SELECT sql
1078
+ FROM sqlite_temp_master
1079
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1080
+
1081
+  (0.1ms)  SELECT sql
1082
+ FROM sqlite_master
1083
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1084
+ UNION ALL
1085
+ SELECT sql
1086
+ FROM sqlite_temp_master
1087
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1088
+ 
1089
+  (8.4ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
1090
+  (0.1ms)  SELECT sql
1091
+ FROM sqlite_master
1092
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
1093
+ UNION ALL
1094
+ SELECT sql
1095
+ FROM sqlite_temp_master
1096
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
1097
+ 
1098
+  (0.1ms) SELECT sql
1099
+ FROM sqlite_master
1100
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1101
+ UNION ALL
1102
+ SELECT sql
1103
+ FROM sqlite_temp_master
1104
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1105
+
1106
+  (0.1ms)  SELECT sql
1107
+ FROM sqlite_master
1108
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1109
+ UNION ALL
1110
+ SELECT sql
1111
+ FROM sqlite_temp_master
1112
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1113
+ 
1114
+  (10.2ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
1115
+  (10.7ms) CREATE TABLE "uibox_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1116
+  (10.3ms) CREATE INDEX "index_uibox_elements_on_active" ON "uibox_elements" ("active")
1117
+  (0.1ms)  SELECT sql
1118
+ FROM sqlite_master
1119
+ WHERE name='index_uibox_elements_on_active' AND type='index'
1120
+ UNION ALL
1121
+ SELECT sql
1122
+ FROM sqlite_temp_master
1123
+ WHERE name='index_uibox_elements_on_active' AND type='index'
1124
+ 
1125
+  (14.6ms) CREATE INDEX "index_uibox_elements_on_type" ON "uibox_elements" ("type")
1126
+  (19.8ms) CREATE TABLE "uibox_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1127
+  (19.9ms) CREATE INDEX "index_uibox_pages_on_active" ON "uibox_pages" ("active")
1128
+  (0.1ms)  SELECT sql
1129
+ FROM sqlite_master
1130
+ WHERE name='index_uibox_pages_on_active' AND type='index'
1131
+ UNION ALL
1132
+ SELECT sql
1133
+ FROM sqlite_temp_master
1134
+ WHERE name='index_uibox_pages_on_active' AND type='index'
1135
+ 
1136
+  (25.1ms) CREATE INDEX "index_uibox_pages_on_type" ON "uibox_pages" ("type")
1137
+  (27.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1138
+  (29.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1139
+  (0.1ms) SELECT version FROM "schema_migrations"
1140
+  (26.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150501163411')
1141
+  (26.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150501163401')
1142
+  (23.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150501162907')
1143
+  (22.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150501163248')
1144
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1145
+
1146
+
1147
+ Started GET "/" for ::1 at 2015-05-01 11:33:45 -0600
1148
+ Processing by Rails::WelcomeController#index as HTML
1149
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/railties-4.2.1/lib/rails/templates/rails/welcome/index.html.erb (0.8ms)
1150
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
1151
+
1152
+
1153
+ Started GET "/" for ::1 at 2015-05-01 11:33:45 -0600
1154
+ Processing by Rails::WelcomeController#index as HTML
1155
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/railties-4.2.1/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
1156
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1157
+
1158
+
1159
+ Started GET "/" for ::1 at 2015-05-01 11:35:17 -0600
1160
+ Processing by Rails::WelcomeController#index as HTML
1161
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/railties-4.2.1/lib/rails/templates/rails/welcome/index.html.erb (1.0ms)
1162
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
1163
+
1164
+
1165
+ Started GET "/" for ::1 at 2015-05-01 11:35:18 -0600
1166
+ Processing by Rails::WelcomeController#index as HTML
1167
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/railties-4.2.1/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
1168
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1169
+
1170
+
1171
+ Started GET "/" for ::1 at 2015-05-01 11:35:19 -0600
1172
+ Processing by Rails::WelcomeController#index as HTML
1173
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/railties-4.2.1/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
1174
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1175
+
1176
+
1177
+ Started GET "/" for ::1 at 2015-05-01 11:35:22 -0600
1178
+ Processing by Rails::WelcomeController#index as HTML
1179
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/railties-4.2.1/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
1180
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1181
+
1182
+
1183
+ Started GET "/" for ::1 at 2015-05-01 11:35:49 -0600
1184
+ Processing by Uibox::PagesController#index as HTML
1185
+ Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.6ms)
1186
+ Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.0ms)
1187
+
1188
+
1189
+ Started GET "/assets/uibox/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-05-01 11:35:49 -0600
1190
+
1191
+
1192
+ Started GET "/assets/uibox/application-5239015df4ee7c66e1719761a86bff3c.js?body=1" for ::1 at 2015-05-01 11:35:49 -0600
1193
+  (18.0ms) DROP TABLE "uibox_boxes"
1194
+  (17.7ms) CREATE TABLE "uibox_boxes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1195
+  (0.1ms) select sqlite_version(*)
1196
+  (16.3ms) CREATE INDEX "index_uibox_boxes_on_active" ON "uibox_boxes" ("active")
1197
+  (0.1ms)  SELECT sql
1198
+ FROM sqlite_master
1199
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
1200
+ UNION ALL
1201
+ SELECT sql
1202
+ FROM sqlite_temp_master
1203
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
1204
+ 
1205
+  (14.0ms) CREATE INDEX "index_uibox_boxes_on_type" ON "uibox_boxes" ("type")
1206
+  (11.4ms) DROP TABLE "uibox_content_translations"
1207
+  (10.9ms) CREATE TABLE "uibox_content_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uibox_content_id" integer NOT NULL, "locale" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "title" varchar DEFAULT '', "name" varchar DEFAULT '', "description" text DEFAULT '', "text_raw" text DEFAULT '', "text_html" text DEFAULT '', "active" integer, "type" varchar, "meta" varchar)
1208
+  (10.9ms) CREATE INDEX "index_uibox_content_translations_on_active" ON "uibox_content_translations" ("active")
1209
+  (0.1ms) SELECT sql
1210
+ FROM sqlite_master
1211
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1212
+ UNION ALL
1213
+ SELECT sql
1214
+ FROM sqlite_temp_master
1215
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1216
+
1217
+  (13.2ms) CREATE INDEX "index_uibox_content_translations_on_locale" ON "uibox_content_translations" ("locale")
1218
+  (0.1ms) SELECT sql
1219
+ FROM sqlite_master
1220
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1221
+ UNION ALL
1222
+ SELECT sql
1223
+ FROM sqlite_temp_master
1224
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1225
+
1226
+  (0.1ms)  SELECT sql
1227
+ FROM sqlite_master
1228
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1229
+ UNION ALL
1230
+ SELECT sql
1231
+ FROM sqlite_temp_master
1232
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1233
+ 
1234
+  (18.8ms) CREATE INDEX "index_uibox_content_translations_on_name" ON "uibox_content_translations" ("name")
1235
+  (0.1ms)  SELECT sql
1236
+ FROM sqlite_master
1237
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1238
+ UNION ALL
1239
+ SELECT sql
1240
+ FROM sqlite_temp_master
1241
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1242
+ 
1243
+  (0.1ms) SELECT sql
1244
+ FROM sqlite_master
1245
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1246
+ UNION ALL
1247
+ SELECT sql
1248
+ FROM sqlite_temp_master
1249
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1250
+
1251
+  (0.1ms)  SELECT sql
1252
+ FROM sqlite_master
1253
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1254
+ UNION ALL
1255
+ SELECT sql
1256
+ FROM sqlite_temp_master
1257
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1258
+ 
1259
+  (20.2ms) CREATE INDEX "index_uibox_content_translations_on_title" ON "uibox_content_translations" ("title")
1260
+  (0.1ms)  SELECT sql
1261
+ FROM sqlite_master
1262
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1263
+ UNION ALL
1264
+ SELECT sql
1265
+ FROM sqlite_temp_master
1266
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1267
+ 
1268
+  (0.1ms) SELECT sql
1269
+ FROM sqlite_master
1270
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1271
+ UNION ALL
1272
+ SELECT sql
1273
+ FROM sqlite_temp_master
1274
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1275
+
1276
+  (0.1ms)  SELECT sql
1277
+ FROM sqlite_master
1278
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1279
+ UNION ALL
1280
+ SELECT sql
1281
+ FROM sqlite_temp_master
1282
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1283
+ 
1284
+  (0.1ms) SELECT sql
1285
+ FROM sqlite_master
1286
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1287
+ UNION ALL
1288
+ SELECT sql
1289
+ FROM sqlite_temp_master
1290
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1291
+
1292
+  (31.9ms) CREATE INDEX "index_uibox_content_translations_on_type" ON "uibox_content_translations" ("type")
1293
+  (0.1ms) SELECT sql
1294
+ FROM sqlite_master
1295
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
1296
+ UNION ALL
1297
+ SELECT sql
1298
+ FROM sqlite_temp_master
1299
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
1300
+
1301
+  (0.1ms)  SELECT sql
1302
+ FROM sqlite_master
1303
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1304
+ UNION ALL
1305
+ SELECT sql
1306
+ FROM sqlite_temp_master
1307
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1308
+ 
1309
+  (0.1ms) SELECT sql
1310
+ FROM sqlite_master
1311
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1312
+ UNION ALL
1313
+ SELECT sql
1314
+ FROM sqlite_temp_master
1315
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1316
+
1317
+  (0.1ms)  SELECT sql
1318
+ FROM sqlite_master
1319
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1320
+ UNION ALL
1321
+ SELECT sql
1322
+ FROM sqlite_temp_master
1323
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1324
+ 
1325
+  (0.1ms) SELECT sql
1326
+ FROM sqlite_master
1327
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1328
+ UNION ALL
1329
+ SELECT sql
1330
+ FROM sqlite_temp_master
1331
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1332
+
1333
+  (31.7ms) CREATE INDEX "index_uibox_content_translations_on_uibox_content_id" ON "uibox_content_translations" ("uibox_content_id")
1334
+  (29.7ms) DROP TABLE "uibox_contents"
1335
+  (26.7ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1336
+  (25.9ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
1337
+  (0.1ms)  SELECT sql
1338
+ FROM sqlite_master
1339
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1340
+ UNION ALL
1341
+ SELECT sql
1342
+ FROM sqlite_temp_master
1343
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1344
+ 
1345
+  (25.0ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
1346
+  (0.1ms)  SELECT sql
1347
+ FROM sqlite_master
1348
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1349
+ UNION ALL
1350
+ SELECT sql
1351
+ FROM sqlite_temp_master
1352
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1353
+ 
1354
+  (0.1ms) SELECT sql
1355
+ FROM sqlite_master
1356
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1357
+ UNION ALL
1358
+ SELECT sql
1359
+ FROM sqlite_temp_master
1360
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1361
+
1362
+  (31.0ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
1363
+  (0.1ms) SELECT sql
1364
+ FROM sqlite_master
1365
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
1366
+ UNION ALL
1367
+ SELECT sql
1368
+ FROM sqlite_temp_master
1369
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
1370
+
1371
+  (0.1ms)  SELECT sql
1372
+ FROM sqlite_master
1373
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1374
+ UNION ALL
1375
+ SELECT sql
1376
+ FROM sqlite_temp_master
1377
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1378
+ 
1379
+  (0.1ms) SELECT sql
1380
+ FROM sqlite_master
1381
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1382
+ UNION ALL
1383
+ SELECT sql
1384
+ FROM sqlite_temp_master
1385
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1386
+
1387
+  (21.9ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
1388
+  (16.2ms) DROP TABLE "uibox_elements"
1389
+  (13.4ms) CREATE TABLE "uibox_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1390
+  (8.3ms) CREATE INDEX "index_uibox_elements_on_active" ON "uibox_elements" ("active")
1391
+  (0.1ms)  SELECT sql
1392
+ FROM sqlite_master
1393
+ WHERE name='index_uibox_elements_on_active' AND type='index'
1394
+ UNION ALL
1395
+ SELECT sql
1396
+ FROM sqlite_temp_master
1397
+ WHERE name='index_uibox_elements_on_active' AND type='index'
1398
+ 
1399
+  (10.3ms) CREATE INDEX "index_uibox_elements_on_type" ON "uibox_elements" ("type")
1400
+  (14.4ms) DROP TABLE "uibox_pages"
1401
+  (11.1ms) CREATE TABLE "uibox_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1402
+  (11.2ms) CREATE INDEX "index_uibox_pages_on_active" ON "uibox_pages" ("active")
1403
+  (0.1ms) SELECT sql
1404
+ FROM sqlite_master
1405
+ WHERE name='index_uibox_pages_on_active' AND type='index'
1406
+ UNION ALL
1407
+ SELECT sql
1408
+ FROM sqlite_temp_master
1409
+ WHERE name='index_uibox_pages_on_active' AND type='index'
1410
+
1411
+  (11.0ms) CREATE INDEX "index_uibox_pages_on_type" ON "uibox_pages" ("type")
1412
+  (0.1ms) SELECT version FROM "schema_migrations"
1413
+  (17.6ms) DROP TABLE "uibox_boxes"
1414
+  (20.5ms) CREATE TABLE "uibox_boxes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1415
+  (0.1ms) select sqlite_version(*)
1416
+  (34.2ms) CREATE INDEX "index_uibox_boxes_on_active" ON "uibox_boxes" ("active")
1417
+  (0.1ms)  SELECT sql
1418
+ FROM sqlite_master
1419
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
1420
+ UNION ALL
1421
+ SELECT sql
1422
+ FROM sqlite_temp_master
1423
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
1424
+ 
1425
+  (36.1ms) CREATE INDEX "index_uibox_boxes_on_type" ON "uibox_boxes" ("type")
1426
+  (34.9ms) DROP TABLE "uibox_content_translations"
1427
+  (33.9ms) CREATE TABLE "uibox_content_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uibox_content_id" integer NOT NULL, "locale" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "title" varchar DEFAULT '', "name" varchar DEFAULT '', "description" text DEFAULT '', "text_raw" text DEFAULT '', "text_html" text DEFAULT '', "active" integer, "type" varchar, "meta" varchar)
1428
+  (27.6ms) CREATE INDEX "index_uibox_content_translations_on_active" ON "uibox_content_translations" ("active")
1429
+  (0.1ms) SELECT sql
1430
+ FROM sqlite_master
1431
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1432
+ UNION ALL
1433
+ SELECT sql
1434
+ FROM sqlite_temp_master
1435
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1436
+
1437
+  (23.3ms) CREATE INDEX "index_uibox_content_translations_on_locale" ON "uibox_content_translations" ("locale")
1438
+  (0.1ms) SELECT sql
1439
+ FROM sqlite_master
1440
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1441
+ UNION ALL
1442
+ SELECT sql
1443
+ FROM sqlite_temp_master
1444
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1445
+
1446
+  (0.1ms)  SELECT sql
1447
+ FROM sqlite_master
1448
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1449
+ UNION ALL
1450
+ SELECT sql
1451
+ FROM sqlite_temp_master
1452
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1453
+ 
1454
+  (18.3ms) CREATE INDEX "index_uibox_content_translations_on_name" ON "uibox_content_translations" ("name")
1455
+  (0.1ms)  SELECT sql
1456
+ FROM sqlite_master
1457
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1458
+ UNION ALL
1459
+ SELECT sql
1460
+ FROM sqlite_temp_master
1461
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1462
+ 
1463
+  (0.1ms) SELECT sql
1464
+ FROM sqlite_master
1465
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1466
+ UNION ALL
1467
+ SELECT sql
1468
+ FROM sqlite_temp_master
1469
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1470
+
1471
+  (0.1ms)  SELECT sql
1472
+ FROM sqlite_master
1473
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1474
+ UNION ALL
1475
+ SELECT sql
1476
+ FROM sqlite_temp_master
1477
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1478
+ 
1479
+  (17.2ms) CREATE INDEX "index_uibox_content_translations_on_title" ON "uibox_content_translations" ("title")
1480
+  (0.1ms)  SELECT sql
1481
+ FROM sqlite_master
1482
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1483
+ UNION ALL
1484
+ SELECT sql
1485
+ FROM sqlite_temp_master
1486
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1487
+ 
1488
+  (0.1ms) SELECT sql
1489
+ FROM sqlite_master
1490
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1491
+ UNION ALL
1492
+ SELECT sql
1493
+ FROM sqlite_temp_master
1494
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1495
+
1496
+  (0.1ms)  SELECT sql
1497
+ FROM sqlite_master
1498
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1499
+ UNION ALL
1500
+ SELECT sql
1501
+ FROM sqlite_temp_master
1502
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1503
+ 
1504
+  (0.1ms) SELECT sql
1505
+ FROM sqlite_master
1506
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1507
+ UNION ALL
1508
+ SELECT sql
1509
+ FROM sqlite_temp_master
1510
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1511
+
1512
+  (17.6ms) CREATE INDEX "index_uibox_content_translations_on_type" ON "uibox_content_translations" ("type")
1513
+  (0.1ms) SELECT sql
1514
+ FROM sqlite_master
1515
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
1516
+ UNION ALL
1517
+ SELECT sql
1518
+ FROM sqlite_temp_master
1519
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
1520
+
1521
+  (0.1ms)  SELECT sql
1522
+ FROM sqlite_master
1523
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1524
+ UNION ALL
1525
+ SELECT sql
1526
+ FROM sqlite_temp_master
1527
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1528
+ 
1529
+  (0.1ms) SELECT sql
1530
+ FROM sqlite_master
1531
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1532
+ UNION ALL
1533
+ SELECT sql
1534
+ FROM sqlite_temp_master
1535
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1536
+
1537
+  (0.1ms)  SELECT sql
1538
+ FROM sqlite_master
1539
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1540
+ UNION ALL
1541
+ SELECT sql
1542
+ FROM sqlite_temp_master
1543
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1544
+ 
1545
+  (0.1ms) SELECT sql
1546
+ FROM sqlite_master
1547
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1548
+ UNION ALL
1549
+ SELECT sql
1550
+ FROM sqlite_temp_master
1551
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1552
+
1553
+  (21.4ms) CREATE INDEX "index_uibox_content_translations_on_uibox_content_id" ON "uibox_content_translations" ("uibox_content_id")
1554
+  (11.2ms) DROP TABLE "uibox_contents"
1555
+  (9.2ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1556
+  (10.9ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
1557
+  (0.1ms)  SELECT sql
1558
+ FROM sqlite_master
1559
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1560
+ UNION ALL
1561
+ SELECT sql
1562
+ FROM sqlite_temp_master
1563
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1564
+ 
1565
+  (12.0ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
1566
+  (0.1ms)  SELECT sql
1567
+ FROM sqlite_master
1568
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1569
+ UNION ALL
1570
+ SELECT sql
1571
+ FROM sqlite_temp_master
1572
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1573
+ 
1574
+  (0.1ms) SELECT sql
1575
+ FROM sqlite_master
1576
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1577
+ UNION ALL
1578
+ SELECT sql
1579
+ FROM sqlite_temp_master
1580
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1581
+
1582
+  (23.6ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
1583
+  (0.1ms) SELECT sql
1584
+ FROM sqlite_master
1585
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
1586
+ UNION ALL
1587
+ SELECT sql
1588
+ FROM sqlite_temp_master
1589
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
1590
+
1591
+  (0.1ms)  SELECT sql
1592
+ FROM sqlite_master
1593
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1594
+ UNION ALL
1595
+ SELECT sql
1596
+ FROM sqlite_temp_master
1597
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1598
+ 
1599
+  (0.1ms) SELECT sql
1600
+ FROM sqlite_master
1601
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1602
+ UNION ALL
1603
+ SELECT sql
1604
+ FROM sqlite_temp_master
1605
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1606
+
1607
+  (22.9ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
1608
+  (18.7ms) DROP TABLE "uibox_elements"
1609
+  (20.3ms) CREATE TABLE "uibox_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1610
+  (20.5ms) CREATE INDEX "index_uibox_elements_on_active" ON "uibox_elements" ("active")
1611
+  (0.1ms)  SELECT sql
1612
+ FROM sqlite_master
1613
+ WHERE name='index_uibox_elements_on_active' AND type='index'
1614
+ UNION ALL
1615
+ SELECT sql
1616
+ FROM sqlite_temp_master
1617
+ WHERE name='index_uibox_elements_on_active' AND type='index'
1618
+ 
1619
+  (18.8ms) CREATE INDEX "index_uibox_elements_on_type" ON "uibox_elements" ("type")
1620
+  (24.8ms) DROP TABLE "uibox_pages"
1621
+  (34.0ms) CREATE TABLE "uibox_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1622
+  (20.9ms) CREATE INDEX "index_uibox_pages_on_active" ON "uibox_pages" ("active")
1623
+  (0.1ms) SELECT sql
1624
+ FROM sqlite_master
1625
+ WHERE name='index_uibox_pages_on_active' AND type='index'
1626
+ UNION ALL
1627
+ SELECT sql
1628
+ FROM sqlite_temp_master
1629
+ WHERE name='index_uibox_pages_on_active' AND type='index'
1630
+
1631
+  (19.5ms) CREATE INDEX "index_uibox_pages_on_type" ON "uibox_pages" ("type")
1632
+  (0.1ms) SELECT version FROM "schema_migrations"
1633
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1634
+  (0.1ms) begin transaction
1635
+  (0.1ms) rollback transaction
1636
+  (13.3ms) DROP TABLE "uibox_boxes"
1637
+  (19.7ms) CREATE TABLE "uibox_boxes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1638
+  (0.1ms) select sqlite_version(*)
1639
+  (20.2ms) CREATE INDEX "index_uibox_boxes_on_active" ON "uibox_boxes" ("active")
1640
+  (0.1ms)  SELECT sql
1641
+ FROM sqlite_master
1642
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
1643
+ UNION ALL
1644
+ SELECT sql
1645
+ FROM sqlite_temp_master
1646
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
1647
+ 
1648
+  (19.1ms) CREATE INDEX "index_uibox_boxes_on_type" ON "uibox_boxes" ("type")
1649
+  (22.1ms) DROP TABLE "uibox_content_translations"
1650
+  (27.2ms) CREATE TABLE "uibox_content_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uibox_content_id" integer NOT NULL, "locale" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "title" varchar DEFAULT '', "name" varchar DEFAULT '', "description" text DEFAULT '', "text_raw" text DEFAULT '', "text_html" text DEFAULT '', "active" integer, "type" varchar, "meta" varchar)
1651
+  (26.9ms) CREATE INDEX "index_uibox_content_translations_on_active" ON "uibox_content_translations" ("active")
1652
+  (0.1ms) SELECT sql
1653
+ FROM sqlite_master
1654
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1655
+ UNION ALL
1656
+ SELECT sql
1657
+ FROM sqlite_temp_master
1658
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1659
+
1660
+  (28.6ms) CREATE INDEX "index_uibox_content_translations_on_locale" ON "uibox_content_translations" ("locale")
1661
+  (0.1ms) SELECT sql
1662
+ FROM sqlite_master
1663
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1664
+ UNION ALL
1665
+ SELECT sql
1666
+ FROM sqlite_temp_master
1667
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1668
+
1669
+  (0.1ms)  SELECT sql
1670
+ FROM sqlite_master
1671
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1672
+ UNION ALL
1673
+ SELECT sql
1674
+ FROM sqlite_temp_master
1675
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1676
+ 
1677
+  (27.4ms) CREATE INDEX "index_uibox_content_translations_on_name" ON "uibox_content_translations" ("name")
1678
+  (0.1ms)  SELECT sql
1679
+ FROM sqlite_master
1680
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1681
+ UNION ALL
1682
+ SELECT sql
1683
+ FROM sqlite_temp_master
1684
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1685
+ 
1686
+  (0.1ms) SELECT sql
1687
+ FROM sqlite_master
1688
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1689
+ UNION ALL
1690
+ SELECT sql
1691
+ FROM sqlite_temp_master
1692
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1693
+
1694
+  (0.1ms)  SELECT sql
1695
+ FROM sqlite_master
1696
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1697
+ UNION ALL
1698
+ SELECT sql
1699
+ FROM sqlite_temp_master
1700
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1701
+ 
1702
+  (23.5ms) CREATE INDEX "index_uibox_content_translations_on_title" ON "uibox_content_translations" ("title")
1703
+  (0.1ms)  SELECT sql
1704
+ FROM sqlite_master
1705
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1706
+ UNION ALL
1707
+ SELECT sql
1708
+ FROM sqlite_temp_master
1709
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1710
+ 
1711
+  (0.1ms) SELECT sql
1712
+ FROM sqlite_master
1713
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1714
+ UNION ALL
1715
+ SELECT sql
1716
+ FROM sqlite_temp_master
1717
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1718
+
1719
+  (0.1ms)  SELECT sql
1720
+ FROM sqlite_master
1721
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1722
+ UNION ALL
1723
+ SELECT sql
1724
+ FROM sqlite_temp_master
1725
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1726
+ 
1727
+  (0.1ms) SELECT sql
1728
+ FROM sqlite_master
1729
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1730
+ UNION ALL
1731
+ SELECT sql
1732
+ FROM sqlite_temp_master
1733
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1734
+
1735
+  (24.7ms) CREATE INDEX "index_uibox_content_translations_on_type" ON "uibox_content_translations" ("type")
1736
+  (0.1ms) SELECT sql
1737
+ FROM sqlite_master
1738
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
1739
+ UNION ALL
1740
+ SELECT sql
1741
+ FROM sqlite_temp_master
1742
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
1743
+
1744
+  (0.1ms)  SELECT sql
1745
+ FROM sqlite_master
1746
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1747
+ UNION ALL
1748
+ SELECT sql
1749
+ FROM sqlite_temp_master
1750
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1751
+ 
1752
+  (0.1ms) SELECT sql
1753
+ FROM sqlite_master
1754
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1755
+ UNION ALL
1756
+ SELECT sql
1757
+ FROM sqlite_temp_master
1758
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1759
+
1760
+  (0.1ms)  SELECT sql
1761
+ FROM sqlite_master
1762
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1763
+ UNION ALL
1764
+ SELECT sql
1765
+ FROM sqlite_temp_master
1766
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1767
+ 
1768
+  (0.1ms) SELECT sql
1769
+ FROM sqlite_master
1770
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1771
+ UNION ALL
1772
+ SELECT sql
1773
+ FROM sqlite_temp_master
1774
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1775
+
1776
+  (26.0ms) CREATE INDEX "index_uibox_content_translations_on_uibox_content_id" ON "uibox_content_translations" ("uibox_content_id")
1777
+  (14.8ms) DROP TABLE "uibox_contents"
1778
+  (10.2ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1779
+  (13.5ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
1780
+  (0.1ms)  SELECT sql
1781
+ FROM sqlite_master
1782
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1783
+ UNION ALL
1784
+ SELECT sql
1785
+ FROM sqlite_temp_master
1786
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1787
+ 
1788
+  (13.7ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
1789
+  (0.1ms)  SELECT sql
1790
+ FROM sqlite_master
1791
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1792
+ UNION ALL
1793
+ SELECT sql
1794
+ FROM sqlite_temp_master
1795
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1796
+ 
1797
+  (0.1ms) SELECT sql
1798
+ FROM sqlite_master
1799
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1800
+ UNION ALL
1801
+ SELECT sql
1802
+ FROM sqlite_temp_master
1803
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1804
+
1805
+  (11.6ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
1806
+  (0.1ms) SELECT sql
1807
+ FROM sqlite_master
1808
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
1809
+ UNION ALL
1810
+ SELECT sql
1811
+ FROM sqlite_temp_master
1812
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
1813
+
1814
+  (0.1ms)  SELECT sql
1815
+ FROM sqlite_master
1816
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1817
+ UNION ALL
1818
+ SELECT sql
1819
+ FROM sqlite_temp_master
1820
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
1821
+ 
1822
+  (0.1ms) SELECT sql
1823
+ FROM sqlite_master
1824
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1825
+ UNION ALL
1826
+ SELECT sql
1827
+ FROM sqlite_temp_master
1828
+ WHERE name='index_uibox_contents_on_active' AND type='index'
1829
+
1830
+  (11.5ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
1831
+  (11.5ms) DROP TABLE "uibox_elements"
1832
+  (14.2ms) CREATE TABLE "uibox_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1833
+  (19.2ms) CREATE INDEX "index_uibox_elements_on_active" ON "uibox_elements" ("active")
1834
+  (0.1ms)  SELECT sql
1835
+ FROM sqlite_master
1836
+ WHERE name='index_uibox_elements_on_active' AND type='index'
1837
+ UNION ALL
1838
+ SELECT sql
1839
+ FROM sqlite_temp_master
1840
+ WHERE name='index_uibox_elements_on_active' AND type='index'
1841
+ 
1842
+  (27.5ms) CREATE INDEX "index_uibox_elements_on_type" ON "uibox_elements" ("type")
1843
+  (27.5ms) DROP TABLE "uibox_pages"
1844
+  (38.4ms) CREATE TABLE "uibox_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1845
+  (29.8ms) CREATE INDEX "index_uibox_pages_on_active" ON "uibox_pages" ("active")
1846
+  (0.1ms) SELECT sql
1847
+ FROM sqlite_master
1848
+ WHERE name='index_uibox_pages_on_active' AND type='index'
1849
+ UNION ALL
1850
+ SELECT sql
1851
+ FROM sqlite_temp_master
1852
+ WHERE name='index_uibox_pages_on_active' AND type='index'
1853
+
1854
+  (25.9ms) CREATE INDEX "index_uibox_pages_on_type" ON "uibox_pages" ("type")
1855
+  (0.1ms) SELECT version FROM "schema_migrations"
1856
+  (22.3ms) DROP TABLE "uibox_boxes"
1857
+  (23.6ms) CREATE TABLE "uibox_boxes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1858
+  (0.1ms) select sqlite_version(*)
1859
+  (27.7ms) CREATE INDEX "index_uibox_boxes_on_active" ON "uibox_boxes" ("active")
1860
+  (0.1ms)  SELECT sql
1861
+ FROM sqlite_master
1862
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
1863
+ UNION ALL
1864
+ SELECT sql
1865
+ FROM sqlite_temp_master
1866
+ WHERE name='index_uibox_boxes_on_active' AND type='index'
1867
+ 
1868
+  (21.5ms) CREATE INDEX "index_uibox_boxes_on_type" ON "uibox_boxes" ("type")
1869
+  (17.8ms) DROP TABLE "uibox_content_translations"
1870
+  (11.5ms) CREATE TABLE "uibox_content_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "uibox_content_id" integer NOT NULL, "locale" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "title" varchar DEFAULT '', "name" varchar DEFAULT '', "description" text DEFAULT '', "text_raw" text DEFAULT '', "text_html" text DEFAULT '', "active" integer, "type" varchar, "meta" varchar)
1871
+  (13.1ms) CREATE INDEX "index_uibox_content_translations_on_active" ON "uibox_content_translations" ("active")
1872
+  (0.1ms) SELECT sql
1873
+ FROM sqlite_master
1874
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1875
+ UNION ALL
1876
+ SELECT sql
1877
+ FROM sqlite_temp_master
1878
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1879
+
1880
+  (11.0ms) CREATE INDEX "index_uibox_content_translations_on_locale" ON "uibox_content_translations" ("locale")
1881
+  (0.1ms) SELECT sql
1882
+ FROM sqlite_master
1883
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1884
+ UNION ALL
1885
+ SELECT sql
1886
+ FROM sqlite_temp_master
1887
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1888
+
1889
+  (0.1ms)  SELECT sql
1890
+ FROM sqlite_master
1891
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1892
+ UNION ALL
1893
+ SELECT sql
1894
+ FROM sqlite_temp_master
1895
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1896
+ 
1897
+  (10.8ms) CREATE INDEX "index_uibox_content_translations_on_name" ON "uibox_content_translations" ("name")
1898
+  (0.1ms)  SELECT sql
1899
+ FROM sqlite_master
1900
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1901
+ UNION ALL
1902
+ SELECT sql
1903
+ FROM sqlite_temp_master
1904
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1905
+ 
1906
+  (0.1ms) SELECT sql
1907
+ FROM sqlite_master
1908
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1909
+ UNION ALL
1910
+ SELECT sql
1911
+ FROM sqlite_temp_master
1912
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1913
+
1914
+  (0.1ms)  SELECT sql
1915
+ FROM sqlite_master
1916
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1917
+ UNION ALL
1918
+ SELECT sql
1919
+ FROM sqlite_temp_master
1920
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1921
+ 
1922
+  (13.7ms) CREATE INDEX "index_uibox_content_translations_on_title" ON "uibox_content_translations" ("title")
1923
+  (0.1ms)  SELECT sql
1924
+ FROM sqlite_master
1925
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1926
+ UNION ALL
1927
+ SELECT sql
1928
+ FROM sqlite_temp_master
1929
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1930
+ 
1931
+  (0.1ms) SELECT sql
1932
+ FROM sqlite_master
1933
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1934
+ UNION ALL
1935
+ SELECT sql
1936
+ FROM sqlite_temp_master
1937
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1938
+
1939
+  (0.1ms)  SELECT sql
1940
+ FROM sqlite_master
1941
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1942
+ UNION ALL
1943
+ SELECT sql
1944
+ FROM sqlite_temp_master
1945
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1946
+ 
1947
+  (0.1ms) SELECT sql
1948
+ FROM sqlite_master
1949
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1950
+ UNION ALL
1951
+ SELECT sql
1952
+ FROM sqlite_temp_master
1953
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1954
+
1955
+  (20.3ms) CREATE INDEX "index_uibox_content_translations_on_type" ON "uibox_content_translations" ("type")
1956
+  (0.1ms) SELECT sql
1957
+ FROM sqlite_master
1958
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
1959
+ UNION ALL
1960
+ SELECT sql
1961
+ FROM sqlite_temp_master
1962
+ WHERE name='index_uibox_content_translations_on_type' AND type='index'
1963
+
1964
+  (0.1ms)  SELECT sql
1965
+ FROM sqlite_master
1966
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1967
+ UNION ALL
1968
+ SELECT sql
1969
+ FROM sqlite_temp_master
1970
+ WHERE name='index_uibox_content_translations_on_title' AND type='index'
1971
+ 
1972
+  (0.1ms) SELECT sql
1973
+ FROM sqlite_master
1974
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1975
+ UNION ALL
1976
+ SELECT sql
1977
+ FROM sqlite_temp_master
1978
+ WHERE name='index_uibox_content_translations_on_name' AND type='index'
1979
+
1980
+  (0.1ms)  SELECT sql
1981
+ FROM sqlite_master
1982
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1983
+ UNION ALL
1984
+ SELECT sql
1985
+ FROM sqlite_temp_master
1986
+ WHERE name='index_uibox_content_translations_on_locale' AND type='index'
1987
+ 
1988
+  (0.1ms) SELECT sql
1989
+ FROM sqlite_master
1990
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1991
+ UNION ALL
1992
+ SELECT sql
1993
+ FROM sqlite_temp_master
1994
+ WHERE name='index_uibox_content_translations_on_active' AND type='index'
1995
+
1996
+  (26.4ms) CREATE INDEX "index_uibox_content_translations_on_uibox_content_id" ON "uibox_content_translations" ("uibox_content_id")
1997
+  (23.1ms) DROP TABLE "uibox_contents"
1998
+  (23.5ms) CREATE TABLE "uibox_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "sourceable_id" integer, "sourceable_type" varchar, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1999
+  (26.8ms) CREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")
2000
+  (0.1ms)  SELECT sql
2001
+ FROM sqlite_master
2002
+ WHERE name='index_uibox_contents_on_active' AND type='index'
2003
+ UNION ALL
2004
+ SELECT sql
2005
+ FROM sqlite_temp_master
2006
+ WHERE name='index_uibox_contents_on_active' AND type='index'
2007
+ 
2008
+  (27.6ms) CREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")
2009
+  (0.1ms)  SELECT sql
2010
+ FROM sqlite_master
2011
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
2012
+ UNION ALL
2013
+ SELECT sql
2014
+ FROM sqlite_temp_master
2015
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
2016
+ 
2017
+  (0.1ms) SELECT sql
2018
+ FROM sqlite_master
2019
+ WHERE name='index_uibox_contents_on_active' AND type='index'
2020
+ UNION ALL
2021
+ SELECT sql
2022
+ FROM sqlite_temp_master
2023
+ WHERE name='index_uibox_contents_on_active' AND type='index'
2024
+
2025
+  (25.8ms) CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
2026
+  (0.1ms) SELECT sql
2027
+ FROM sqlite_master
2028
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
2029
+ UNION ALL
2030
+ SELECT sql
2031
+ FROM sqlite_temp_master
2032
+ WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
2033
+
2034
+  (0.1ms)  SELECT sql
2035
+ FROM sqlite_master
2036
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
2037
+ UNION ALL
2038
+ SELECT sql
2039
+ FROM sqlite_temp_master
2040
+ WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
2041
+ 
2042
+  (0.1ms) SELECT sql
2043
+ FROM sqlite_master
2044
+ WHERE name='index_uibox_contents_on_active' AND type='index'
2045
+ UNION ALL
2046
+ SELECT sql
2047
+ FROM sqlite_temp_master
2048
+ WHERE name='index_uibox_contents_on_active' AND type='index'
2049
+
2050
+  (32.4ms) CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
2051
+  (21.0ms) DROP TABLE "uibox_elements"
2052
+  (17.1ms) CREATE TABLE "uibox_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2053
+  (16.5ms) CREATE INDEX "index_uibox_elements_on_active" ON "uibox_elements" ("active")
2054
+  (0.1ms)  SELECT sql
2055
+ FROM sqlite_master
2056
+ WHERE name='index_uibox_elements_on_active' AND type='index'
2057
+ UNION ALL
2058
+ SELECT sql
2059
+ FROM sqlite_temp_master
2060
+ WHERE name='index_uibox_elements_on_active' AND type='index'
2061
+ 
2062
+  (17.0ms) CREATE INDEX "index_uibox_elements_on_type" ON "uibox_elements" ("type")
2063
+  (16.9ms) DROP TABLE "uibox_pages"
2064
+  (20.7ms) CREATE TABLE "uibox_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1) DEFAULT 1 NOT NULL, "type" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2065
+  (11.1ms) CREATE INDEX "index_uibox_pages_on_active" ON "uibox_pages" ("active")
2066
+  (0.1ms) SELECT sql
2067
+ FROM sqlite_master
2068
+ WHERE name='index_uibox_pages_on_active' AND type='index'
2069
+ UNION ALL
2070
+ SELECT sql
2071
+ FROM sqlite_temp_master
2072
+ WHERE name='index_uibox_pages_on_active' AND type='index'
2073
+
2074
+  (10.7ms) CREATE INDEX "index_uibox_pages_on_type" ON "uibox_pages" ("type")
2075
+  (0.1ms) SELECT version FROM "schema_migrations"
2076
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2077
+  (0.1ms) begin transaction
2078
+  (0.0ms) rollback transaction
2079
+  (0.1ms) begin transaction
2080
+  (0.0ms) rollback transaction
2081
+  (29.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2082
+  (0.1ms) select sqlite_version(*)
2083
+  (33.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2084
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
2085
+  (16.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2086
+  (0.1ms) select sqlite_version(*)
2087
+  (13.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2088
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
2089
+  (21.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2090
+  (0.1ms) select sqlite_version(*)
2091
+  (20.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2092
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
2093
+  (21.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2094
+  (0.1ms) select sqlite_version(*)
2095
+  (10.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2096
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
2097
+
2098
+
2099
+ Started GET "/" for ::1 at 2015-05-09 14:44:41 -0600
2100
+ Processing by Uibox::PagesController#index as HTML
2101
+ Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (1.2ms)
2102
+ Completed 200 OK in 23ms (Views: 23.1ms | ActiveRecord: 0.0ms)
2103
+
2104
+
2105
+ Started GET "/pages" for ::1 at 2015-05-09 14:44:50 -0600
2106
+ Processing by Uibox::PagesController#index as HTML
2107
+ Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
2108
+ Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
2109
+
2110
+
2111
+ Started GET "/pages" for ::1 at 2015-05-09 15:11:31 -0600
2112
+
2113
+ ActionController::RoutingError (uninitialized constant Uibox::Uibox):
2114
+ activesupport (4.2.1) lib/active_support/inflector/methods.rb:276:in `const_get'
2115
+ activesupport (4.2.1) lib/active_support/inflector/methods.rb:276:in `block in constantize'
2116
+ activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each'
2117
+ activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject'
2118
+ activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize'
2119
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference'
2120
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller'
2121
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve'
2122
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2123
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2124
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2125
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2126
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
2127
+ railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
2128
+ railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
2129
+ actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
2130
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2131
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2132
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2133
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2134
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
2135
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
2136
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
2137
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2138
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
2139
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
2140
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
2141
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2142
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
2143
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
2144
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
2145
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2146
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
2147
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
2148
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
2149
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2150
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2151
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2152
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2153
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2154
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2155
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
2156
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
2157
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2158
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2159
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2160
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
2161
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2162
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2163
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2164
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2165
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2166
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
2167
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2168
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
2169
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
2170
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2171
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2172
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2173
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2174
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2175
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2176
+
2177
+
2178
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
2179
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
2180
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2181
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
2182
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.0ms)
2183
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (24.5ms)
2184
+
2185
+
2186
+ Started GET "/pages" for ::1 at 2015-05-09 15:11:40 -0600
2187
+ Processing by Uibox::PagesController#index as HTML
2188
+ Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.6ms)
2189
+ Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms)
2190
+
2191
+
2192
+ Started GET "/assets/uibox/application-5239015df4ee7c66e1719761a86bff3c.js?body=1" for ::1 at 2015-05-09 15:11:40 -0600
2193
+
2194
+
2195
+ Started GET "/assets/uibox/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-05-09 15:11:40 -0600