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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +3 -0
- data/Rakefile +37 -0
- data/app/assets/javascripts/uibox/application.js +13 -0
- data/app/assets/stylesheets/uibox/application.css +15 -0
- data/app/controllers/uibox/application_controller.rb +4 -0
- data/app/controllers/uibox/pages_controller.rb +11 -0
- data/app/helpers/uibox/application_helper.rb +4 -0
- data/app/models/uibox/box.rb +4 -0
- data/app/models/uibox/content.rb +12 -0
- data/app/models/uibox/content_translation.rb +4 -0
- data/app/models/uibox/element.rb +4 -0
- data/app/models/uibox/page.rb +4 -0
- data/app/views/layouts/uibox/application.html.haml +11 -0
- data/app/views/uibox/pages/index.html.haml +2 -0
- data/app/views/uibox/pages/show.html.haml +2 -0
- data/config/routes.rb +4 -0
- data/db/migrate/20150501162907_create_uibox_contents.rb +33 -0
- data/db/migrate/20150501163248_create_uibox_pages.rb +13 -0
- data/db/migrate/20150501163401_create_uibox_boxes.rb +13 -0
- data/db/migrate/20150501163411_create_uibox_elements.rb +13 -0
- data/lib/tasks/uibox_tasks.rake +4 -0
- data/lib/uibox.rb +5 -0
- data/lib/uibox/all.rb +6 -0
- data/lib/uibox/engine.rb +23 -0
- data/lib/uibox/version.rb +3 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +93 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +2195 -0
- data/test/dummy/log/test.log +1227 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/19f412dd069a88d3d531e2f3590f0a59 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1f6186c2c00415b6f79708b663df55fb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2ff2be41326cd8f9f6c32f179be121c1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3ca0e5fae486ab42d8d46f6065142af7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5906a8a8070a497708e615de4580c1ad +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/80f399a5f8f658b6e0db838f67a4499f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8783475c9b048884f2c6cb35fdc58d12 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a7850067d821ba57e7c4275fc2d7168a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/db4b20bdee3762bb2de10a061869a137 +0 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +20 -0
- data/test/uibox_test.rb +7 -0
- metadata +902 -0
|
@@ -0,0 +1,1227 @@
|
|
|
1
|
+
[1m[36m (23.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
2
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
3
|
+
[1m[36m (17.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
5
|
+
[1m[36m (11.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
6
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
7
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
8
|
+
Migrating to CreateUiboxContents (20150501162907)
|
|
9
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10
|
+
[1m[36m (0.2ms)[0m [1mCREATE 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, "slug" varchar, "meta" text, "deleted_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
11
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
12
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_uibox_contents_on_active" ON "uibox_contents" ("active")[0m
|
|
13
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
14
|
+
FROM sqlite_master
|
|
15
|
+
WHERE name='index_uibox_contents_on_active' AND type='index'
|
|
16
|
+
UNION ALL
|
|
17
|
+
SELECT sql
|
|
18
|
+
FROM sqlite_temp_master
|
|
19
|
+
WHERE name='index_uibox_contents_on_active' AND type='index'
|
|
20
|
+
|
|
21
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_uibox_contents_on_sourceable_id" ON "uibox_contents" ("sourceable_id")[0m
|
|
22
|
+
[1m[35m (0.0ms)[0m SELECT sql
|
|
23
|
+
FROM sqlite_master
|
|
24
|
+
WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
|
|
25
|
+
UNION ALL
|
|
26
|
+
SELECT sql
|
|
27
|
+
FROM sqlite_temp_master
|
|
28
|
+
WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
|
|
29
|
+
|
|
30
|
+
[1m[36m (0.0ms)[0m [1m SELECT sql
|
|
31
|
+
FROM sqlite_master
|
|
32
|
+
WHERE name='index_uibox_contents_on_active' AND type='index'
|
|
33
|
+
UNION ALL
|
|
34
|
+
SELECT sql
|
|
35
|
+
FROM sqlite_temp_master
|
|
36
|
+
WHERE name='index_uibox_contents_on_active' AND type='index'
|
|
37
|
+
[0m
|
|
38
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_uibox_contents_on_sourceable_type" ON "uibox_contents" ("sourceable_type")
|
|
39
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
40
|
+
FROM sqlite_master
|
|
41
|
+
WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
|
|
42
|
+
UNION ALL
|
|
43
|
+
SELECT sql
|
|
44
|
+
FROM sqlite_temp_master
|
|
45
|
+
WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
|
|
46
|
+
[0m
|
|
47
|
+
[1m[35m (0.0ms)[0m SELECT sql
|
|
48
|
+
FROM sqlite_master
|
|
49
|
+
WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
|
|
50
|
+
UNION ALL
|
|
51
|
+
SELECT sql
|
|
52
|
+
FROM sqlite_temp_master
|
|
53
|
+
WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
|
|
54
|
+
|
|
55
|
+
[1m[36m (0.0ms)[0m [1m SELECT sql
|
|
56
|
+
FROM sqlite_master
|
|
57
|
+
WHERE name='index_uibox_contents_on_active' AND type='index'
|
|
58
|
+
UNION ALL
|
|
59
|
+
SELECT sql
|
|
60
|
+
FROM sqlite_temp_master
|
|
61
|
+
WHERE name='index_uibox_contents_on_active' AND type='index'
|
|
62
|
+
[0m
|
|
63
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_uibox_contents_on_type" ON "uibox_contents" ("type")
|
|
64
|
+
[1m[36m (0.1ms)[0m [1mCREATE 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) [0m
|
|
65
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "uibox_content_translations" ADD "title" varchar DEFAULT ''
|
|
66
|
+
[1m[36m (0.1ms)[0m [1mALTER TABLE "uibox_content_translations" ADD "name" varchar DEFAULT ''[0m
|
|
67
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "uibox_content_translations" ADD "description" text DEFAULT ''
|
|
68
|
+
[1m[36m (0.1ms)[0m [1mALTER TABLE "uibox_content_translations" ADD "text_raw" text DEFAULT ''[0m
|
|
69
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "uibox_content_translations" ADD "text_html" text DEFAULT ''
|
|
70
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_uibox_content_translations_on_uibox_content_id" ON "uibox_content_translations" ("uibox_content_id")[0m
|
|
71
|
+
[1m[35m (0.0ms)[0m SELECT sql
|
|
72
|
+
FROM sqlite_master
|
|
73
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
74
|
+
UNION ALL
|
|
75
|
+
SELECT sql
|
|
76
|
+
FROM sqlite_temp_master
|
|
77
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
78
|
+
|
|
79
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_uibox_content_translations_on_locale" ON "uibox_content_translations" ("locale")[0m
|
|
80
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "uibox_content_translations" ADD "deleted_at" datetime
|
|
81
|
+
[1m[36m (0.1ms)[0m [1mALTER TABLE "uibox_content_translations" ADD "active" integer[0m
|
|
82
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "uibox_content_translations" ADD "type" varchar
|
|
83
|
+
[1m[36m (0.1ms)[0m [1mALTER TABLE "uibox_content_translations" ADD "slug" varchar[0m
|
|
84
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "uibox_content_translations" ADD "meta" varchar
|
|
85
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
86
|
+
FROM sqlite_master
|
|
87
|
+
WHERE name='index_uibox_content_translations_on_locale' AND type='index'
|
|
88
|
+
UNION ALL
|
|
89
|
+
SELECT sql
|
|
90
|
+
FROM sqlite_temp_master
|
|
91
|
+
WHERE name='index_uibox_content_translations_on_locale' AND type='index'
|
|
92
|
+
[0m
|
|
93
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
94
|
+
FROM sqlite_master
|
|
95
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
96
|
+
UNION ALL
|
|
97
|
+
SELECT sql
|
|
98
|
+
FROM sqlite_temp_master
|
|
99
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
100
|
+
|
|
101
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_uibox_content_translations_on_active" ON "uibox_content_translations" ("active")[0m
|
|
102
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
103
|
+
FROM sqlite_master
|
|
104
|
+
WHERE name='index_uibox_content_translations_on_active' AND type='index'
|
|
105
|
+
UNION ALL
|
|
106
|
+
SELECT sql
|
|
107
|
+
FROM sqlite_temp_master
|
|
108
|
+
WHERE name='index_uibox_content_translations_on_active' AND type='index'
|
|
109
|
+
|
|
110
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
111
|
+
FROM sqlite_master
|
|
112
|
+
WHERE name='index_uibox_content_translations_on_locale' AND type='index'
|
|
113
|
+
UNION ALL
|
|
114
|
+
SELECT sql
|
|
115
|
+
FROM sqlite_temp_master
|
|
116
|
+
WHERE name='index_uibox_content_translations_on_locale' AND type='index'
|
|
117
|
+
[0m
|
|
118
|
+
[1m[35m (0.0ms)[0m SELECT sql
|
|
119
|
+
FROM sqlite_master
|
|
120
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
121
|
+
UNION ALL
|
|
122
|
+
SELECT sql
|
|
123
|
+
FROM sqlite_temp_master
|
|
124
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
125
|
+
|
|
126
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_uibox_content_translations_on_type" ON "uibox_content_translations" ("type")[0m
|
|
127
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
128
|
+
FROM sqlite_master
|
|
129
|
+
WHERE name='index_uibox_content_translations_on_type' AND type='index'
|
|
130
|
+
UNION ALL
|
|
131
|
+
SELECT sql
|
|
132
|
+
FROM sqlite_temp_master
|
|
133
|
+
WHERE name='index_uibox_content_translations_on_type' AND type='index'
|
|
134
|
+
|
|
135
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
136
|
+
FROM sqlite_master
|
|
137
|
+
WHERE name='index_uibox_content_translations_on_active' AND type='index'
|
|
138
|
+
UNION ALL
|
|
139
|
+
SELECT sql
|
|
140
|
+
FROM sqlite_temp_master
|
|
141
|
+
WHERE name='index_uibox_content_translations_on_active' AND type='index'
|
|
142
|
+
[0m
|
|
143
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
144
|
+
FROM sqlite_master
|
|
145
|
+
WHERE name='index_uibox_content_translations_on_locale' AND type='index'
|
|
146
|
+
UNION ALL
|
|
147
|
+
SELECT sql
|
|
148
|
+
FROM sqlite_temp_master
|
|
149
|
+
WHERE name='index_uibox_content_translations_on_locale' AND type='index'
|
|
150
|
+
|
|
151
|
+
[1m[36m (0.0ms)[0m [1m SELECT sql
|
|
152
|
+
FROM sqlite_master
|
|
153
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
154
|
+
UNION ALL
|
|
155
|
+
SELECT sql
|
|
156
|
+
FROM sqlite_temp_master
|
|
157
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
158
|
+
[0m
|
|
159
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_uibox_content_translations_on_name" ON "uibox_content_translations" ("name")
|
|
160
|
+
[1m[36m (0.0ms)[0m [1m SELECT sql
|
|
161
|
+
FROM sqlite_master
|
|
162
|
+
WHERE name='index_uibox_content_translations_on_name' AND type='index'
|
|
163
|
+
UNION ALL
|
|
164
|
+
SELECT sql
|
|
165
|
+
FROM sqlite_temp_master
|
|
166
|
+
WHERE name='index_uibox_content_translations_on_name' AND type='index'
|
|
167
|
+
[0m
|
|
168
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
169
|
+
FROM sqlite_master
|
|
170
|
+
WHERE name='index_uibox_content_translations_on_type' AND type='index'
|
|
171
|
+
UNION ALL
|
|
172
|
+
SELECT sql
|
|
173
|
+
FROM sqlite_temp_master
|
|
174
|
+
WHERE name='index_uibox_content_translations_on_type' AND type='index'
|
|
175
|
+
|
|
176
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
177
|
+
FROM sqlite_master
|
|
178
|
+
WHERE name='index_uibox_content_translations_on_active' AND type='index'
|
|
179
|
+
UNION ALL
|
|
180
|
+
SELECT sql
|
|
181
|
+
FROM sqlite_temp_master
|
|
182
|
+
WHERE name='index_uibox_content_translations_on_active' AND type='index'
|
|
183
|
+
[0m
|
|
184
|
+
[1m[35m (0.0ms)[0m SELECT sql
|
|
185
|
+
FROM sqlite_master
|
|
186
|
+
WHERE name='index_uibox_content_translations_on_locale' AND type='index'
|
|
187
|
+
UNION ALL
|
|
188
|
+
SELECT sql
|
|
189
|
+
FROM sqlite_temp_master
|
|
190
|
+
WHERE name='index_uibox_content_translations_on_locale' AND type='index'
|
|
191
|
+
|
|
192
|
+
[1m[36m (0.0ms)[0m [1m SELECT sql
|
|
193
|
+
FROM sqlite_master
|
|
194
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
195
|
+
UNION ALL
|
|
196
|
+
SELECT sql
|
|
197
|
+
FROM sqlite_temp_master
|
|
198
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
199
|
+
[0m
|
|
200
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_uibox_content_translations_on_title" ON "uibox_content_translations" ("title")
|
|
201
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150501162907"]]
|
|
202
|
+
[1m[35m (21.0ms)[0m commit transaction
|
|
203
|
+
Migrating to CreateUiboxPages (20150501163248)
|
|
204
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
205
|
+
[1m[35m (0.2ms)[0m 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)
|
|
206
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_uibox_pages_on_active" ON "uibox_pages" ("active")[0m
|
|
207
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
208
|
+
FROM sqlite_master
|
|
209
|
+
WHERE name='index_uibox_pages_on_active' AND type='index'
|
|
210
|
+
UNION ALL
|
|
211
|
+
SELECT sql
|
|
212
|
+
FROM sqlite_temp_master
|
|
213
|
+
WHERE name='index_uibox_pages_on_active' AND type='index'
|
|
214
|
+
|
|
215
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_uibox_pages_on_type" ON "uibox_pages" ("type")[0m
|
|
216
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150501163248"]]
|
|
217
|
+
[1m[36m (22.7ms)[0m [1mcommit transaction[0m
|
|
218
|
+
Migrating to CreateUiboxBoxes (20150501163401)
|
|
219
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
220
|
+
[1m[36m (0.2ms)[0m [1mCREATE 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) [0m
|
|
221
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_uibox_boxes_on_active" ON "uibox_boxes" ("active")
|
|
222
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
223
|
+
FROM sqlite_master
|
|
224
|
+
WHERE name='index_uibox_boxes_on_active' AND type='index'
|
|
225
|
+
UNION ALL
|
|
226
|
+
SELECT sql
|
|
227
|
+
FROM sqlite_temp_master
|
|
228
|
+
WHERE name='index_uibox_boxes_on_active' AND type='index'
|
|
229
|
+
[0m
|
|
230
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_uibox_boxes_on_type" ON "uibox_boxes" ("type")
|
|
231
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150501163401"]]
|
|
232
|
+
[1m[35m (20.9ms)[0m commit transaction
|
|
233
|
+
Migrating to CreateUiboxElements (20150501163411)
|
|
234
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
235
|
+
[1m[35m (0.2ms)[0m 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)
|
|
236
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_uibox_elements_on_active" ON "uibox_elements" ("active")[0m
|
|
237
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
238
|
+
FROM sqlite_master
|
|
239
|
+
WHERE name='index_uibox_elements_on_active' AND type='index'
|
|
240
|
+
UNION ALL
|
|
241
|
+
SELECT sql
|
|
242
|
+
FROM sqlite_temp_master
|
|
243
|
+
WHERE name='index_uibox_elements_on_active' AND type='index'
|
|
244
|
+
|
|
245
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_uibox_elements_on_type" ON "uibox_elements" ("type")[0m
|
|
246
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150501163411"]]
|
|
247
|
+
[1m[36m (20.8ms)[0m [1mcommit transaction[0m
|
|
248
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
249
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
250
|
+
FROM sqlite_master
|
|
251
|
+
WHERE name='index_uibox_boxes_on_type' AND type='index'
|
|
252
|
+
UNION ALL
|
|
253
|
+
SELECT sql
|
|
254
|
+
FROM sqlite_temp_master
|
|
255
|
+
WHERE name='index_uibox_boxes_on_type' AND type='index'
|
|
256
|
+
[0m
|
|
257
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
258
|
+
FROM sqlite_master
|
|
259
|
+
WHERE name='index_uibox_boxes_on_active' AND type='index'
|
|
260
|
+
UNION ALL
|
|
261
|
+
SELECT sql
|
|
262
|
+
FROM sqlite_temp_master
|
|
263
|
+
WHERE name='index_uibox_boxes_on_active' AND type='index'
|
|
264
|
+
|
|
265
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
266
|
+
FROM sqlite_master
|
|
267
|
+
WHERE name='index_uibox_content_translations_on_title' AND type='index'
|
|
268
|
+
UNION ALL
|
|
269
|
+
SELECT sql
|
|
270
|
+
FROM sqlite_temp_master
|
|
271
|
+
WHERE name='index_uibox_content_translations_on_title' AND type='index'
|
|
272
|
+
[0m
|
|
273
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
274
|
+
FROM sqlite_master
|
|
275
|
+
WHERE name='index_uibox_content_translations_on_name' AND type='index'
|
|
276
|
+
UNION ALL
|
|
277
|
+
SELECT sql
|
|
278
|
+
FROM sqlite_temp_master
|
|
279
|
+
WHERE name='index_uibox_content_translations_on_name' AND type='index'
|
|
280
|
+
|
|
281
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
282
|
+
FROM sqlite_master
|
|
283
|
+
WHERE name='index_uibox_content_translations_on_type' AND type='index'
|
|
284
|
+
UNION ALL
|
|
285
|
+
SELECT sql
|
|
286
|
+
FROM sqlite_temp_master
|
|
287
|
+
WHERE name='index_uibox_content_translations_on_type' AND type='index'
|
|
288
|
+
[0m
|
|
289
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
290
|
+
FROM sqlite_master
|
|
291
|
+
WHERE name='index_uibox_content_translations_on_active' AND type='index'
|
|
292
|
+
UNION ALL
|
|
293
|
+
SELECT sql
|
|
294
|
+
FROM sqlite_temp_master
|
|
295
|
+
WHERE name='index_uibox_content_translations_on_active' AND type='index'
|
|
296
|
+
|
|
297
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
298
|
+
FROM sqlite_master
|
|
299
|
+
WHERE name='index_uibox_content_translations_on_locale' AND type='index'
|
|
300
|
+
UNION ALL
|
|
301
|
+
SELECT sql
|
|
302
|
+
FROM sqlite_temp_master
|
|
303
|
+
WHERE name='index_uibox_content_translations_on_locale' AND type='index'
|
|
304
|
+
[0m
|
|
305
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
306
|
+
FROM sqlite_master
|
|
307
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
308
|
+
UNION ALL
|
|
309
|
+
SELECT sql
|
|
310
|
+
FROM sqlite_temp_master
|
|
311
|
+
WHERE name='index_uibox_content_translations_on_uibox_content_id' AND type='index'
|
|
312
|
+
|
|
313
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
314
|
+
FROM sqlite_master
|
|
315
|
+
WHERE name='index_uibox_contents_on_type' AND type='index'
|
|
316
|
+
UNION ALL
|
|
317
|
+
SELECT sql
|
|
318
|
+
FROM sqlite_temp_master
|
|
319
|
+
WHERE name='index_uibox_contents_on_type' AND type='index'
|
|
320
|
+
[0m
|
|
321
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
322
|
+
FROM sqlite_master
|
|
323
|
+
WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
|
|
324
|
+
UNION ALL
|
|
325
|
+
SELECT sql
|
|
326
|
+
FROM sqlite_temp_master
|
|
327
|
+
WHERE name='index_uibox_contents_on_sourceable_type' AND type='index'
|
|
328
|
+
|
|
329
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
330
|
+
FROM sqlite_master
|
|
331
|
+
WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
|
|
332
|
+
UNION ALL
|
|
333
|
+
SELECT sql
|
|
334
|
+
FROM sqlite_temp_master
|
|
335
|
+
WHERE name='index_uibox_contents_on_sourceable_id' AND type='index'
|
|
336
|
+
[0m
|
|
337
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
338
|
+
FROM sqlite_master
|
|
339
|
+
WHERE name='index_uibox_contents_on_active' AND type='index'
|
|
340
|
+
UNION ALL
|
|
341
|
+
SELECT sql
|
|
342
|
+
FROM sqlite_temp_master
|
|
343
|
+
WHERE name='index_uibox_contents_on_active' AND type='index'
|
|
344
|
+
|
|
345
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
346
|
+
FROM sqlite_master
|
|
347
|
+
WHERE name='index_uibox_elements_on_type' AND type='index'
|
|
348
|
+
UNION ALL
|
|
349
|
+
SELECT sql
|
|
350
|
+
FROM sqlite_temp_master
|
|
351
|
+
WHERE name='index_uibox_elements_on_type' AND type='index'
|
|
352
|
+
[0m
|
|
353
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
354
|
+
FROM sqlite_master
|
|
355
|
+
WHERE name='index_uibox_elements_on_active' AND type='index'
|
|
356
|
+
UNION ALL
|
|
357
|
+
SELECT sql
|
|
358
|
+
FROM sqlite_temp_master
|
|
359
|
+
WHERE name='index_uibox_elements_on_active' AND type='index'
|
|
360
|
+
|
|
361
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
362
|
+
FROM sqlite_master
|
|
363
|
+
WHERE name='index_uibox_pages_on_type' AND type='index'
|
|
364
|
+
UNION ALL
|
|
365
|
+
SELECT sql
|
|
366
|
+
FROM sqlite_temp_master
|
|
367
|
+
WHERE name='index_uibox_pages_on_type' AND type='index'
|
|
368
|
+
[0m
|
|
369
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
370
|
+
FROM sqlite_master
|
|
371
|
+
WHERE name='index_uibox_pages_on_active' AND type='index'
|
|
372
|
+
UNION ALL
|
|
373
|
+
SELECT sql
|
|
374
|
+
FROM sqlite_temp_master
|
|
375
|
+
WHERE name='index_uibox_pages_on_active' AND type='index'
|
|
376
|
+
|
|
377
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
378
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
379
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
380
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
381
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
382
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
383
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
384
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
385
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
386
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
387
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
388
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
389
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
390
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
391
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
392
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
393
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
394
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
395
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
396
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
397
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
398
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
399
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
400
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
401
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
402
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
403
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
404
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
405
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
406
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
407
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
408
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
409
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
410
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
411
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
412
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
413
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
414
|
+
[1m[35m (29.7ms)[0m DELETE FROM "uibox_contents";
|
|
415
|
+
[1m[36m (27.6ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
416
|
+
[1m[35m (27.8ms)[0m DELETE FROM "uibox_pages";
|
|
417
|
+
[1m[36m (26.9ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
418
|
+
[1m[35m (25.4ms)[0m DELETE FROM "uibox_elements";
|
|
419
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
420
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
421
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
422
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
423
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
424
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
425
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
426
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
427
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
428
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
429
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
430
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
431
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
432
|
+
[1m[35m (21.3ms)[0m DELETE FROM "uibox_contents";
|
|
433
|
+
[1m[36m (10.4ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
434
|
+
[1m[35m (10.7ms)[0m DELETE FROM "uibox_pages";
|
|
435
|
+
[1m[36m (11.7ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
436
|
+
[1m[35m (11.4ms)[0m DELETE FROM "uibox_elements";
|
|
437
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
438
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
439
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
440
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
441
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
442
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
443
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
444
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
445
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
446
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
447
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
448
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
449
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
450
|
+
[1m[35m (19.4ms)[0m DELETE FROM "uibox_contents";
|
|
451
|
+
[1m[36m (16.5ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
452
|
+
[1m[35m (18.0ms)[0m DELETE FROM "uibox_pages";
|
|
453
|
+
[1m[36m (21.6ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
454
|
+
[1m[35m (20.2ms)[0m DELETE FROM "uibox_elements";
|
|
455
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
456
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
457
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
458
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
459
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
460
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
461
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
462
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
463
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
464
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
465
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
466
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
467
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
468
|
+
[1m[35m (25.4ms)[0m DELETE FROM "uibox_contents";
|
|
469
|
+
[1m[36m (22.3ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
470
|
+
[1m[35m (14.8ms)[0m DELETE FROM "uibox_pages";
|
|
471
|
+
[1m[36m (11.5ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
472
|
+
[1m[35m (11.3ms)[0m DELETE FROM "uibox_elements";
|
|
473
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
474
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
475
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
476
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
477
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
478
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
479
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
480
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
481
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
482
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
483
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
484
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
485
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
486
|
+
[1m[35m (29.3ms)[0m DELETE FROM "uibox_contents";
|
|
487
|
+
[1m[36m (27.7ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
488
|
+
[1m[35m (29.0ms)[0m DELETE FROM "uibox_pages";
|
|
489
|
+
[1m[36m (28.4ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
490
|
+
[1m[35m (26.1ms)[0m DELETE FROM "uibox_elements";
|
|
491
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
492
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
493
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
494
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
495
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
496
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
497
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
498
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
499
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
500
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
501
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
502
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
503
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
504
|
+
[1m[35m (11.5ms)[0m DELETE FROM "uibox_contents";
|
|
505
|
+
[1m[36m (11.2ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
506
|
+
[1m[35m (10.9ms)[0m DELETE FROM "uibox_pages";
|
|
507
|
+
[1m[36m (11.5ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
508
|
+
[1m[35m (11.8ms)[0m DELETE FROM "uibox_elements";
|
|
509
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
510
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
511
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
512
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
513
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
514
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
515
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
516
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
517
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
518
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
519
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
520
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
521
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
522
|
+
[1m[35m (25.1ms)[0m DELETE FROM "uibox_contents";
|
|
523
|
+
[1m[36m (17.6ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
524
|
+
[1m[35m (17.0ms)[0m DELETE FROM "uibox_pages";
|
|
525
|
+
[1m[36m (17.4ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
526
|
+
[1m[35m (15.4ms)[0m DELETE FROM "uibox_elements";
|
|
527
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
528
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
529
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
530
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
531
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
532
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
533
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
534
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
535
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
536
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
537
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
538
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
539
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
540
|
+
[1m[35m (24.2ms)[0m DELETE FROM "uibox_contents";
|
|
541
|
+
[1m[36m (19.8ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
542
|
+
[1m[35m (17.6ms)[0m DELETE FROM "uibox_pages";
|
|
543
|
+
[1m[36m (19.3ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
544
|
+
[1m[35m (16.1ms)[0m DELETE FROM "uibox_elements";
|
|
545
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
546
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
547
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
548
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
549
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
550
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
551
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
552
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
553
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
554
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
555
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
556
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
557
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
558
|
+
[1m[35m (19.3ms)[0m DELETE FROM "uibox_contents";
|
|
559
|
+
[1m[36m (21.6ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
560
|
+
[1m[35m (25.7ms)[0m DELETE FROM "uibox_pages";
|
|
561
|
+
[1m[36m (27.1ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
562
|
+
[1m[35m (20.8ms)[0m DELETE FROM "uibox_elements";
|
|
563
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
564
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
565
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
566
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
567
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
568
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
569
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
570
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
571
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
572
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
573
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
574
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
575
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
576
|
+
[1m[35m (18.8ms)[0m DELETE FROM "uibox_contents";
|
|
577
|
+
[1m[36m (15.8ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
578
|
+
[1m[35m (14.4ms)[0m DELETE FROM "uibox_pages";
|
|
579
|
+
[1m[36m (9.3ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
580
|
+
[1m[35m (11.0ms)[0m DELETE FROM "uibox_elements";
|
|
581
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
582
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
583
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
584
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
585
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
586
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
587
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
588
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
589
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
590
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
591
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
592
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
593
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
594
|
+
[1m[35m (30.9ms)[0m DELETE FROM "uibox_contents";
|
|
595
|
+
[1m[36m (24.7ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
596
|
+
[1m[35m (23.3ms)[0m DELETE FROM "uibox_pages";
|
|
597
|
+
[1m[36m (25.3ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
598
|
+
[1m[35m (24.8ms)[0m DELETE FROM "uibox_elements";
|
|
599
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
600
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
601
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
602
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
603
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
604
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
605
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
606
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
607
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
608
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
609
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
610
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
611
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
612
|
+
[1m[35m (20.1ms)[0m DELETE FROM "uibox_contents";
|
|
613
|
+
[1m[36m (19.4ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
614
|
+
[1m[35m (19.3ms)[0m DELETE FROM "uibox_pages";
|
|
615
|
+
[1m[36m (18.2ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
616
|
+
[1m[35m (17.5ms)[0m DELETE FROM "uibox_elements";
|
|
617
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
618
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
619
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
620
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
621
|
+
Processing by Uibox::PagesController#index as HTML
|
|
622
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.2ms)
|
|
623
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
|
624
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
625
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
626
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
627
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
628
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
629
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
630
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
631
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
632
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
633
|
+
[1m[35m (23.0ms)[0m DELETE FROM "uibox_contents";
|
|
634
|
+
[1m[36m (18.7ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
635
|
+
[1m[35m (19.9ms)[0m DELETE FROM "uibox_pages";
|
|
636
|
+
[1m[36m (19.4ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
637
|
+
[1m[35m (19.2ms)[0m DELETE FROM "uibox_elements";
|
|
638
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
639
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
640
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
641
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
642
|
+
Processing by Uibox::PagesController#index as HTML
|
|
643
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.2ms)
|
|
644
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
645
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
646
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
647
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
648
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
649
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
650
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
651
|
+
Processing by Uibox::PagesController#show as HTML
|
|
652
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/show.html.haml within layouts/uibox/application (0.1ms)
|
|
653
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
|
654
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
655
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
656
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
657
|
+
[1m[35m (19.2ms)[0m DELETE FROM "uibox_contents";
|
|
658
|
+
[1m[36m (25.1ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
659
|
+
[1m[35m (25.7ms)[0m DELETE FROM "uibox_pages";
|
|
660
|
+
[1m[36m (23.5ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
661
|
+
[1m[35m (20.2ms)[0m DELETE FROM "uibox_elements";
|
|
662
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
663
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
664
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
665
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
666
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
667
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
668
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
669
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
670
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
671
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
672
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
673
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
674
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
675
|
+
[1m[35m (16.7ms)[0m DELETE FROM "uibox_contents";
|
|
676
|
+
[1m[36m (18.9ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
677
|
+
[1m[35m (26.6ms)[0m DELETE FROM "uibox_pages";
|
|
678
|
+
[1m[36m (27.9ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
679
|
+
[1m[35m (23.8ms)[0m DELETE FROM "uibox_elements";
|
|
680
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
681
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
682
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
683
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
684
|
+
Processing by Uibox::PagesController#index as HTML
|
|
685
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
686
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
|
687
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
688
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
689
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
690
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
691
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
692
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
693
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
694
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
695
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
696
|
+
[1m[35m (11.2ms)[0m DELETE FROM "uibox_contents";
|
|
697
|
+
[1m[36m (10.3ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
698
|
+
[1m[35m (10.8ms)[0m DELETE FROM "uibox_pages";
|
|
699
|
+
[1m[36m (18.6ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
700
|
+
[1m[35m (19.7ms)[0m DELETE FROM "uibox_elements";
|
|
701
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
702
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
703
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
704
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
705
|
+
Processing by Uibox::PagesController#index as HTML
|
|
706
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
707
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
|
708
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
709
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
710
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
711
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
712
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
713
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
714
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
715
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
716
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
717
|
+
[1m[35m (29.8ms)[0m DELETE FROM "uibox_contents";
|
|
718
|
+
[1m[36m (22.5ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
719
|
+
[1m[35m (23.2ms)[0m DELETE FROM "uibox_pages";
|
|
720
|
+
[1m[36m (25.2ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
721
|
+
[1m[35m (24.7ms)[0m DELETE FROM "uibox_elements";
|
|
722
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
723
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
724
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
725
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
726
|
+
Processing by Uibox::PagesController#index as HTML
|
|
727
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
728
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
729
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
730
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
731
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
732
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
733
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
734
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
735
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
736
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
737
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
738
|
+
[1m[35m (11.4ms)[0m DELETE FROM "uibox_contents";
|
|
739
|
+
[1m[36m (8.7ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
740
|
+
[1m[35m (10.9ms)[0m DELETE FROM "uibox_pages";
|
|
741
|
+
[1m[36m (11.2ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
742
|
+
[1m[35m (11.6ms)[0m DELETE FROM "uibox_elements";
|
|
743
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
744
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
745
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
746
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
747
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
748
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
749
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
750
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
751
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
752
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
753
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
754
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
755
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
756
|
+
[1m[35m (28.2ms)[0m DELETE FROM "uibox_contents";
|
|
757
|
+
[1m[36m (24.5ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
758
|
+
[1m[35m (34.3ms)[0m DELETE FROM "uibox_pages";
|
|
759
|
+
[1m[36m (19.8ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
760
|
+
[1m[35m (18.8ms)[0m DELETE FROM "uibox_elements";
|
|
761
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
762
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
763
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
764
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
765
|
+
Processing by Uibox::PagesController#index as HTML
|
|
766
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
767
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
768
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
769
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
770
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
771
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
772
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
773
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
774
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
775
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
776
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
777
|
+
[1m[35m (10.9ms)[0m DELETE FROM "uibox_contents";
|
|
778
|
+
[1m[36m (8.3ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
779
|
+
[1m[35m (16.2ms)[0m DELETE FROM "uibox_pages";
|
|
780
|
+
[1m[36m (20.1ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
781
|
+
[1m[35m (19.9ms)[0m DELETE FROM "uibox_elements";
|
|
782
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
783
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
784
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
785
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
786
|
+
Processing by Uibox::PagesController#index as HTML
|
|
787
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.2ms)
|
|
788
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
|
789
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
790
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
791
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
792
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
793
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
794
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
795
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
796
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
797
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
798
|
+
[1m[35m (18.6ms)[0m DELETE FROM "uibox_contents";
|
|
799
|
+
[1m[36m (16.8ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
800
|
+
[1m[35m (25.8ms)[0m DELETE FROM "uibox_pages";
|
|
801
|
+
[1m[36m (27.4ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
802
|
+
[1m[35m (19.9ms)[0m DELETE FROM "uibox_elements";
|
|
803
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
804
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
805
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
806
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
807
|
+
Processing by Uibox::PagesController#index as HTML
|
|
808
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
809
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
|
810
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
811
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
812
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
813
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
814
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
815
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
816
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
817
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
818
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
819
|
+
[1m[35m (16.8ms)[0m DELETE FROM "uibox_contents";
|
|
820
|
+
[1m[36m (24.2ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
821
|
+
[1m[35m (25.8ms)[0m DELETE FROM "uibox_pages";
|
|
822
|
+
[1m[36m (28.0ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
823
|
+
[1m[35m (29.0ms)[0m DELETE FROM "uibox_elements";
|
|
824
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
825
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
826
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
827
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
828
|
+
Processing by Uibox::PagesController#index as HTML
|
|
829
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.2ms)
|
|
830
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
831
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
832
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
833
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
834
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
835
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
836
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
837
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
838
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
839
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
840
|
+
[1m[35m (16.6ms)[0m DELETE FROM "uibox_contents";
|
|
841
|
+
[1m[36m (16.1ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
842
|
+
[1m[35m (16.4ms)[0m DELETE FROM "uibox_pages";
|
|
843
|
+
[1m[36m (28.2ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
844
|
+
[1m[35m (22.2ms)[0m DELETE FROM "uibox_elements";
|
|
845
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
846
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
847
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
848
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
849
|
+
Processing by Uibox::PagesController#index as HTML
|
|
850
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.2ms)
|
|
851
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
|
852
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
853
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
854
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
855
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
856
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
857
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
858
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
859
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
860
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
861
|
+
[1m[35m (28.2ms)[0m DELETE FROM "uibox_contents";
|
|
862
|
+
[1m[36m (23.7ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
863
|
+
[1m[35m (20.3ms)[0m DELETE FROM "uibox_pages";
|
|
864
|
+
[1m[36m (19.5ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
865
|
+
[1m[35m (18.9ms)[0m DELETE FROM "uibox_elements";
|
|
866
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
867
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
868
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
869
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
870
|
+
Processing by Uibox::PagesController#index as HTML
|
|
871
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
872
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
873
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
874
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
875
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
876
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
877
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
878
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
879
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
880
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
881
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
882
|
+
[1m[35m (11.7ms)[0m DELETE FROM "uibox_contents";
|
|
883
|
+
[1m[36m (11.1ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
884
|
+
[1m[35m (21.2ms)[0m DELETE FROM "uibox_pages";
|
|
885
|
+
[1m[36m (25.4ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
886
|
+
[1m[35m (31.4ms)[0m DELETE FROM "uibox_elements";
|
|
887
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
888
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
889
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
890
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
891
|
+
Processing by Uibox::PagesController#index as HTML
|
|
892
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
893
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
|
894
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
895
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
896
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
897
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
898
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
899
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
900
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
901
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
902
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
903
|
+
[1m[35m (24.8ms)[0m DELETE FROM "uibox_contents";
|
|
904
|
+
[1m[36m (17.6ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
905
|
+
[1m[35m (17.6ms)[0m DELETE FROM "uibox_pages";
|
|
906
|
+
[1m[36m (19.2ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
907
|
+
[1m[35m (17.0ms)[0m DELETE FROM "uibox_elements";
|
|
908
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
909
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
910
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
911
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
912
|
+
Processing by Uibox::PagesController#index as HTML
|
|
913
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
914
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
|
915
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
916
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
917
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
918
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
919
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
920
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
921
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
922
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
923
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
924
|
+
[1m[35m (24.0ms)[0m DELETE FROM "uibox_contents";
|
|
925
|
+
[1m[36m (24.9ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
926
|
+
[1m[35m (26.7ms)[0m DELETE FROM "uibox_pages";
|
|
927
|
+
[1m[36m (27.4ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
928
|
+
[1m[35m (21.0ms)[0m DELETE FROM "uibox_elements";
|
|
929
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
930
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
931
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
932
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
933
|
+
Processing by Uibox::PagesController#index as HTML
|
|
934
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.2ms)
|
|
935
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
|
936
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
937
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
938
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
939
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
940
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
941
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
942
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
943
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
944
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
945
|
+
[1m[35m (23.9ms)[0m DELETE FROM "uibox_contents";
|
|
946
|
+
[1m[36m (19.8ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
947
|
+
[1m[35m (17.8ms)[0m DELETE FROM "uibox_pages";
|
|
948
|
+
[1m[36m (19.6ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
949
|
+
[1m[35m (19.6ms)[0m DELETE FROM "uibox_elements";
|
|
950
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
951
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
952
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
953
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
954
|
+
Processing by Uibox::PagesController#index as HTML
|
|
955
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.2ms)
|
|
956
|
+
Completed 200 OK in 4ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
|
957
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
958
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
959
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
960
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
961
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
962
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
963
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
|
964
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "uibox_pages" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-05-09 21:35:10.351859"], ["updated_at", "2015-05-09 21:35:10.351859"]]
|
|
965
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
|
966
|
+
Processing by Uibox::PagesController#show as HTML
|
|
967
|
+
Parameters: {"id"=>"1"}
|
|
968
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/show.html.haml within layouts/uibox/application (0.1ms)
|
|
969
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
|
970
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
971
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
972
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
973
|
+
[1m[35m (22.9ms)[0m DELETE FROM "uibox_contents";
|
|
974
|
+
[1m[36m (26.3ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
975
|
+
[1m[35m (29.1ms)[0m DELETE FROM "uibox_pages";
|
|
976
|
+
[1m[36m (30.1ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
977
|
+
[1m[35m (28.3ms)[0m DELETE FROM "uibox_elements";
|
|
978
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
979
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
980
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
981
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
982
|
+
Processing by Uibox::PagesController#index as HTML
|
|
983
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
984
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
985
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
986
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
987
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
988
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
989
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
990
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
991
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
|
992
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "uibox_pages" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-05-09 21:36:09.206529"], ["updated_at", "2015-05-09 21:36:09.206529"]]
|
|
993
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
|
994
|
+
Processing by Uibox::PagesController#show as HTML
|
|
995
|
+
Parameters: {"id"=>"1"}
|
|
996
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/show.html.haml within layouts/uibox/application (0.1ms)
|
|
997
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
|
998
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
999
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1000
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1001
|
+
[1m[35m (16.9ms)[0m DELETE FROM "uibox_contents";
|
|
1002
|
+
[1m[36m (16.6ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
1003
|
+
[1m[35m (16.7ms)[0m DELETE FROM "uibox_pages";
|
|
1004
|
+
[1m[36m (12.5ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
1005
|
+
[1m[35m (11.5ms)[0m DELETE FROM "uibox_elements";
|
|
1006
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1007
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1008
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1009
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1010
|
+
Processing by Uibox::PagesController#index as HTML
|
|
1011
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
1012
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
1013
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1014
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1015
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1016
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1017
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1018
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1019
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
|
1020
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "uibox_pages" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-05-09 21:36:39.727049"], ["updated_at", "2015-05-09 21:36:39.727049"]]
|
|
1021
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
|
1022
|
+
Processing by Uibox::PagesController#show as HTML
|
|
1023
|
+
Parameters: {"id"=>"1"}
|
|
1024
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/show.html.haml within layouts/uibox/application (0.1ms)
|
|
1025
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
|
1026
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1027
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1028
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1029
|
+
[1m[35m (19.0ms)[0m DELETE FROM "uibox_contents";
|
|
1030
|
+
[1m[36m (16.3ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
1031
|
+
[1m[35m (17.5ms)[0m DELETE FROM "uibox_pages";
|
|
1032
|
+
[1m[36m (19.6ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
1033
|
+
[1m[35m (19.1ms)[0m DELETE FROM "uibox_elements";
|
|
1034
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1035
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1036
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1037
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1038
|
+
Processing by Uibox::PagesController#index as HTML
|
|
1039
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
1040
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
|
1041
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1042
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1043
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1044
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1045
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1046
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1047
|
+
Processing by Uibox::PagesController#show as HTML
|
|
1048
|
+
Parameters: {"id"=>"0"}
|
|
1049
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/show.html.haml within layouts/uibox/application (0.1ms)
|
|
1050
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
|
1051
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1052
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1053
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1054
|
+
[1m[35m (19.8ms)[0m DELETE FROM "uibox_contents";
|
|
1055
|
+
[1m[36m (19.1ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
1056
|
+
[1m[35m (19.3ms)[0m DELETE FROM "uibox_pages";
|
|
1057
|
+
[1m[36m (18.3ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
1058
|
+
[1m[35m (17.3ms)[0m DELETE FROM "uibox_elements";
|
|
1059
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1060
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1061
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1062
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1063
|
+
Processing by Uibox::PagesController#index as HTML
|
|
1064
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
1065
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
1066
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1067
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1068
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1069
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1070
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1071
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1072
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1073
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1074
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1075
|
+
[1m[35m (23.5ms)[0m DELETE FROM "uibox_contents";
|
|
1076
|
+
[1m[36m (16.2ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
1077
|
+
[1m[35m (11.7ms)[0m DELETE FROM "uibox_pages";
|
|
1078
|
+
[1m[36m (11.5ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
1079
|
+
[1m[35m (11.6ms)[0m DELETE FROM "uibox_elements";
|
|
1080
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1081
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1082
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1083
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1084
|
+
Processing by Uibox::PagesController#index as HTML
|
|
1085
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.2ms)
|
|
1086
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
|
1087
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1088
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1089
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1090
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1091
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1092
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1093
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
|
1094
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "uibox_pages" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-05-09 21:37:26.431261"], ["updated_at", "2015-05-09 21:37:26.431261"]]
|
|
1095
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
|
1096
|
+
Processing by Uibox::PagesController#show as HTML
|
|
1097
|
+
Parameters: {"id"=>"1"}
|
|
1098
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/show.html.haml within layouts/uibox/application (0.1ms)
|
|
1099
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
|
1100
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1101
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1102
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1103
|
+
[1m[35m (21.0ms)[0m DELETE FROM "uibox_contents";
|
|
1104
|
+
[1m[36m (25.1ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
1105
|
+
[1m[35m (20.2ms)[0m DELETE FROM "uibox_pages";
|
|
1106
|
+
[1m[36m (19.9ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
1107
|
+
[1m[35m (20.2ms)[0m DELETE FROM "uibox_elements";
|
|
1108
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1109
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1110
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1111
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1112
|
+
Processing by Uibox::PagesController#index as HTML
|
|
1113
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
1114
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
|
1115
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1116
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1117
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1118
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1119
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1120
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1121
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1122
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1123
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1124
|
+
[1m[35m (26.9ms)[0m DELETE FROM "uibox_contents";
|
|
1125
|
+
[1m[36m (24.9ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
1126
|
+
[1m[35m (23.3ms)[0m DELETE FROM "uibox_pages";
|
|
1127
|
+
[1m[36m (22.6ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
1128
|
+
[1m[35m (19.7ms)[0m DELETE FROM "uibox_elements";
|
|
1129
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1130
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1131
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1132
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1133
|
+
Processing by Uibox::PagesController#index as HTML
|
|
1134
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
1135
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
|
1136
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1137
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1138
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1139
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1140
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1141
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1142
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1143
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1144
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1145
|
+
[1m[35m (25.2ms)[0m DELETE FROM "uibox_contents";
|
|
1146
|
+
[1m[36m (22.4ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
1147
|
+
[1m[35m (23.4ms)[0m DELETE FROM "uibox_pages";
|
|
1148
|
+
[1m[36m (18.4ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
1149
|
+
[1m[35m (12.4ms)[0m DELETE FROM "uibox_elements";
|
|
1150
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1151
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1152
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1153
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1154
|
+
Processing by Uibox::PagesController#index as HTML
|
|
1155
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
1156
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
|
1157
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1158
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1159
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1160
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1161
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1162
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1163
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
|
1164
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "uibox_pages" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-05-09 21:45:02.517886"], ["updated_at", "2015-05-09 21:45:02.517886"]]
|
|
1165
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
|
1166
|
+
Processing by Uibox::PagesController#show as HTML
|
|
1167
|
+
Parameters: {"id"=>"1"}
|
|
1168
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/show.html.haml within layouts/uibox/application (0.1ms)
|
|
1169
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
|
1170
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1171
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1172
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1173
|
+
[1m[35m (19.2ms)[0m DELETE FROM "uibox_contents";
|
|
1174
|
+
[1m[36m (13.5ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
1175
|
+
[1m[35m (17.7ms)[0m DELETE FROM "uibox_pages";
|
|
1176
|
+
[1m[36m (19.7ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
1177
|
+
[1m[35m (19.4ms)[0m DELETE FROM "uibox_elements";
|
|
1178
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1179
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1180
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1181
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1182
|
+
Processing by Uibox::PagesController#index as HTML
|
|
1183
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.2ms)
|
|
1184
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
1185
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1186
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1187
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1188
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1189
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1190
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1191
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
|
1192
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "uibox_pages" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-05-09 21:45:42.225928"], ["updated_at", "2015-05-09 21:45:42.225928"]]
|
|
1193
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
|
1194
|
+
Processing by Uibox::PagesController#show as HTML
|
|
1195
|
+
Parameters: {"id"=>"1"}
|
|
1196
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/show.html.haml within layouts/uibox/application (0.1ms)
|
|
1197
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
|
1198
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1199
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
1200
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1201
|
+
[1m[35m (29.0ms)[0m DELETE FROM "uibox_contents";
|
|
1202
|
+
[1m[36m (29.7ms)[0m [1mDELETE FROM "uibox_content_translations";[0m
|
|
1203
|
+
[1m[35m (26.8ms)[0m DELETE FROM "uibox_pages";
|
|
1204
|
+
[1m[36m (28.4ms)[0m [1mDELETE FROM "uibox_boxes";[0m
|
|
1205
|
+
[1m[35m (27.1ms)[0m DELETE FROM "uibox_elements";
|
|
1206
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1207
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1208
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1209
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1210
|
+
Processing by Uibox::PagesController#index as HTML
|
|
1211
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/index.html.haml within layouts/uibox/application (0.1ms)
|
|
1212
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
|
1213
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
|
1214
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1215
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1216
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1217
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
1218
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
1219
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
|
|
1220
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "uibox_pages" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-05-09 21:46:13.304787"], ["updated_at", "2015-05-09 21:46:13.304787"]]
|
|
1221
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
|
|
1222
|
+
Processing by Uibox::PagesController#show as HTML
|
|
1223
|
+
Parameters: {"id"=>"1"}
|
|
1224
|
+
Rendered /home/shared-data/projects/ruby/engines/uibox/app/views/uibox/pages/show.html.haml within layouts/uibox/application (0.1ms)
|
|
1225
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
|
1226
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
|
1227
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|