txtblx 0.0.4 → 0.0.5
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 +4 -4
- data/app/controllers/txtblx/textblocks_controller.rb +13 -0
- data/app/helpers/txtblx/textblocks_helper.rb +1 -1
- data/config/routes.rb +1 -0
- data/lib/tasks/txtblx_tasks.rake +8 -0
- data/lib/txtblx/version.rb +1 -1
- data/spec/controllers/txtblx/textblocks_controller_spec.rb +30 -0
- data/spec/dummy/app/models/ability.rb +16 -0
- data/spec/dummy/app/models/user.rb +6 -0
- data/spec/dummy/app/views/layouts/application.html.erb +3 -0
- data/spec/dummy/config/environments/development.rb +1 -0
- data/spec/dummy/config/initializers/devise.rb +259 -0
- data/spec/dummy/config/locales/devise.en.yml +60 -0
- data/spec/dummy/config/routes.rb +1 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20150419175857_devise_create_users.rb +42 -0
- data/spec/dummy/db/migrate/20150419222125_add_role_to_user.rb +5 -0
- data/spec/dummy/db/schema.rb +20 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +24 -14
- data/spec/dummy/log/test.log +2954 -77
- data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/factories/users.rb +6 -0
- data/spec/spec_helper.rb +3 -0
- metadata +90 -61
- data/spec/dummy/config/initializers/txtblx.rb +0 -2
data/spec/dummy/log/test.log
CHANGED
@@ -1,60 +1,2675 @@
|
|
1
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
2
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
4
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5
|
+
[1m[36m (33.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
6
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
7
|
+
[1m[36m (27.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
8
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
9
|
+
Migrating to CreateSnapsTags (20150321131740)
|
10
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "snaps_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "record_id" integer, "record_type" varchar, "tag" varchar, "superseded_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
12
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150321131740"]]
|
13
|
+
[1m[35m (30.7ms)[0m commit transaction
|
14
|
+
Migrating to CreateTxtblxTextblocks (20150405222157)
|
15
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
16
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "txtblx_textblocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "perma_id" integer, "key" varchar, "description" varchar, "text" text, "text_html" text, "path" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
17
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150405222157"]]
|
18
|
+
[1m[35m (35.5ms)[0m commit transaction
|
19
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
20
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
21
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
22
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:22:04.316765"], ["updated_at", "2015-04-05 23:22:04.316765"]]
|
23
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:22:04.339988' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
24
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
25
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
26
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
27
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:22:04.344907"], ["updated_at", "2015-04-05 23:22:04.344907"]]
|
28
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
29
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:22:04 +0200
|
30
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
31
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
32
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
33
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:27:45.283199"], ["updated_at", "2015-04-05 23:27:45.283199"]]
|
34
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:27:45.307955' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
35
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
36
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
37
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
38
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:27:45.314355"], ["updated_at", "2015-04-05 23:27:45.314355"]]
|
39
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
40
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:27:45 +0200
|
41
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
42
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
43
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
44
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:28:33.181839"], ["updated_at", "2015-04-05 23:28:33.181839"]]
|
45
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:28:33.203958' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
46
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
47
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
48
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
49
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:28:33.208807"], ["updated_at", "2015-04-05 23:28:33.208807"]]
|
50
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
51
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:28:33 +0200
|
52
|
+
Processing by DummiesController#index as HTML
|
53
|
+
Completed 500 Internal Server Error in 44ms (ActiveRecord: 0.0ms)
|
54
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
55
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
56
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
57
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:30:22.360305"], ["updated_at", "2015-04-05 23:30:22.360305"]]
|
58
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:30:22.383270' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
59
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
60
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
61
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
62
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:30:22.388200"], ["updated_at", "2015-04-05 23:30:22.388200"]]
|
63
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
64
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:30:22 +0200
|
65
|
+
Processing by DummiesController#index as HTML
|
66
|
+
Rendered dummies/index.html.erb within layouts/application (1.7ms)
|
67
|
+
Completed 500 Internal Server Error in 61ms (ActiveRecord: 0.0ms)
|
68
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
69
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
70
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
71
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:31:47.825216"], ["updated_at", "2015-04-05 23:31:47.825216"]]
|
72
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:31:47.850754' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
73
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
74
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
75
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
76
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:31:47.856515"], ["updated_at", "2015-04-05 23:31:47.856515"]]
|
77
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
78
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:31:47 +0200
|
79
|
+
Processing by DummiesController#index as HTML
|
80
|
+
Rendered dummies/index.html.erb within layouts/application (51.2ms)
|
81
|
+
Completed 500 Internal Server Error in 59ms (ActiveRecord: 0.0ms)
|
82
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
83
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
84
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
85
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:33:56.435214"], ["updated_at", "2015-04-05 23:33:56.435214"]]
|
86
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:33:56.457536' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
87
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
88
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
89
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
90
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:33:56.462572"], ["updated_at", "2015-04-05 23:33:56.462572"]]
|
91
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
92
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:33:56 +0200
|
93
|
+
Processing by DummiesController#index as HTML
|
94
|
+
Rendered dummies/index.html.erb within layouts/application (41.2ms)
|
95
|
+
Completed 200 OK in 52ms (Views: 51.9ms | ActiveRecord: 0.0ms)
|
96
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
97
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
98
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
99
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:34:11.405402"], ["updated_at", "2015-04-05 23:34:11.405402"]]
|
100
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:34:11.427920' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
101
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
102
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
103
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
104
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:34:11.433408"], ["updated_at", "2015-04-05 23:34:11.433408"]]
|
105
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
106
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:34:11 +0200
|
107
|
+
Processing by DummiesController#index as HTML
|
108
|
+
Rendered dummies/index.html.erb within layouts/application (0.9ms)
|
109
|
+
Completed 200 OK in 51ms (Views: 50.6ms | ActiveRecord: 0.0ms)
|
110
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
111
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
112
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
113
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:34:49.261608"], ["updated_at", "2015-04-05 23:34:49.261608"]]
|
114
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:34:49.289918' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
115
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
116
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
117
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
118
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:34:49.296633"], ["updated_at", "2015-04-05 23:34:49.296633"]]
|
119
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
120
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:34:49 +0200
|
121
|
+
Processing by DummiesController#index as HTML
|
122
|
+
Rendered dummies/index.html.erb within layouts/application (58.9ms)
|
123
|
+
Completed 500 Internal Server Error in 66ms (ActiveRecord: 0.0ms)
|
124
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
125
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
126
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
127
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:37:50.308964"], ["updated_at", "2015-04-05 23:37:50.308964"]]
|
128
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:37:50.332344' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
129
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
130
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
131
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
132
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:37:50.338390"], ["updated_at", "2015-04-05 23:37:50.338390"]]
|
133
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
134
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:37:50 +0200
|
135
|
+
Processing by DummiesController#index as HTML
|
136
|
+
Rendered dummies/index.html.erb within layouts/application (51.7ms)
|
137
|
+
Completed 500 Internal Server Error in 58ms (ActiveRecord: 0.0ms)
|
138
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
139
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
140
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
141
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:40:47.273089"], ["updated_at", "2015-04-05 23:40:47.273089"]]
|
142
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:40:47.298356' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
143
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
144
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
145
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
146
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:40:47.304550"], ["updated_at", "2015-04-05 23:40:47.304550"]]
|
147
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
148
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:40:47 +0200
|
149
|
+
Processing by DummiesController#index as HTML
|
150
|
+
[1m[36mTxtblx::Textblock Load (0.3ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
151
|
+
ON txtblx_textblocks.id = t_published.record_id
|
152
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
153
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
154
|
+
Rendered dummies/index.html.erb within layouts/application (49.5ms)
|
155
|
+
Completed 500 Internal Server Error in 55ms (ActiveRecord: 0.3ms)
|
156
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
157
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
158
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
159
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:42:30.209906"], ["updated_at", "2015-04-05 23:42:30.209906"]]
|
160
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:42:30.232391' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
161
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
162
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
163
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
164
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:42:30.237991"], ["updated_at", "2015-04-05 23:42:30.237991"]]
|
165
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
166
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:42:30 +0200
|
167
|
+
Processing by DummiesController#index as HTML
|
168
|
+
[1m[36mTxtblx::Textblock Load (0.3ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
169
|
+
ON txtblx_textblocks.id = t_published.record_id
|
170
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
171
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
172
|
+
Rendered dummies/index.html.erb within layouts/application (48.4ms)
|
173
|
+
Completed 500 Internal Server Error in 54ms (ActiveRecord: 0.3ms)
|
174
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
175
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
176
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
177
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:44:05.622569"], ["updated_at", "2015-04-05 23:44:05.622569"]]
|
178
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:44:05.649962' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
179
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
180
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
181
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
182
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:44:05.655978"], ["updated_at", "2015-04-05 23:44:05.655978"]]
|
183
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
184
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:44:05 +0200
|
185
|
+
Processing by DummiesController#index as HTML
|
186
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1[0m
|
187
|
+
Rendered dummies/index.html.erb within layouts/application (51.0ms)
|
188
|
+
Completed 200 OK in 65ms (Views: 64.2ms | ActiveRecord: 0.2ms)
|
189
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
190
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
191
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
192
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:45:34.576268"], ["updated_at", "2015-04-05 23:45:34.576268"]]
|
193
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:45:34.614062' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
194
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
195
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
196
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
197
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-05 23:45:34.620273"], ["updated_at", "2015-04-05 23:45:34.620273"]]
|
198
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
199
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
200
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-05 23:45:34.576268"], ["updated_at", "2015-04-05 23:45:34.623148"]]
|
201
|
+
[1m[36m (4.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
202
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
203
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-05 23:45:34.630322' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
204
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
205
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
206
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
207
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-05 23:45:34.631146"], ["updated_at", "2015-04-05 23:45:34.631146"]]
|
208
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
209
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 01:45:34 +0200
|
210
|
+
Processing by DummiesController#index as HTML
|
211
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
|
212
|
+
[1m[36mTxtblx::Textblock Load (0.3ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
213
|
+
ON txtblx_textblocks.id = t_published.record_id
|
214
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
215
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
216
|
+
Rendered dummies/index.html.erb within layouts/application (47.8ms)
|
217
|
+
Completed 200 OK in 61ms (Views: 60.5ms | ActiveRecord: 0.4ms)
|
218
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
219
|
+
[1m[36m (1.1ms)[0m [1mbegin transaction[0m
|
220
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
221
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:29:28.350759"], ["updated_at", "2015-04-06 16:29:28.350759"]]
|
222
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:29:28.380227' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
223
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
224
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
225
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
226
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:29:28.386141"], ["updated_at", "2015-04-06 16:29:28.386141"]]
|
227
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
228
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
229
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:29:28.350759"], ["updated_at", "2015-04-06 16:29:28.389619"]]
|
230
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
231
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
232
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:29:28.393270' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
233
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
234
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
235
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
236
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:29:28.394601"], ["updated_at", "2015-04-06 16:29:28.394601"]]
|
237
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
238
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 18:29:28 +0200
|
239
|
+
Processing by DummiesController#index as HTML
|
240
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
|
241
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
242
|
+
ON txtblx_textblocks.id = t_published.record_id
|
243
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
244
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
245
|
+
Rendered dummies/index.html.erb within layouts/application (5.7ms)
|
246
|
+
Completed 200 OK in 59ms (Views: 58.0ms | ActiveRecord: 0.4ms)
|
247
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
248
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
249
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
250
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:40:47.023758"], ["updated_at", "2015-04-06 16:40:47.023758"]]
|
251
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:40:47.048070' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
252
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
253
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
254
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
255
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:40:47.053747"], ["updated_at", "2015-04-06 16:40:47.053747"]]
|
256
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
257
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
258
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:40:47.023758"], ["updated_at", "2015-04-06 16:40:47.056085"]]
|
259
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
260
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
261
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:40:47.058567' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
262
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
263
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
264
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
265
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:40:47.059387"], ["updated_at", "2015-04-06 16:40:47.059387"]]
|
266
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
267
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 18:40:47 +0200
|
268
|
+
Processing by DummiesController#index as HTML
|
269
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
|
270
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
271
|
+
ON txtblx_textblocks.id = t_published.record_id
|
272
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
273
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
274
|
+
Rendered dummies/index.html.erb within layouts/application (5.3ms)
|
275
|
+
Completed 200 OK in 57ms (Views: 56.3ms | ActiveRecord: 0.3ms)
|
276
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
277
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
278
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
279
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:40:47.131430"], ["updated_at", "2015-04-06 16:40:47.131430"]]
|
280
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:40:47.133950' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
281
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
282
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
283
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
284
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:40:47.134751"], ["updated_at", "2015-04-06 16:40:47.134751"]]
|
285
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
286
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
287
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:40:47.131430"], ["updated_at", "2015-04-06 16:40:47.136650"]]
|
288
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
289
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
290
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:40:47.138663' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
291
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
292
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
293
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
294
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:40:47.139265"], ["updated_at", "2015-04-06 16:40:47.139265"]]
|
295
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
297
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
298
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
299
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:41:48.874706"], ["updated_at", "2015-04-06 16:41:48.874706"]]
|
300
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:41:48.896377' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
301
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
302
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
303
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
304
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:41:48.901374"], ["updated_at", "2015-04-06 16:41:48.901374"]]
|
305
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
306
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
307
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:41:48.874706"], ["updated_at", "2015-04-06 16:41:48.903678"]]
|
308
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
309
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
310
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:41:48.906245' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
311
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
312
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
313
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
314
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:41:48.906908"], ["updated_at", "2015-04-06 16:41:48.906908"]]
|
315
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
316
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 18:41:48 +0200
|
317
|
+
Processing by DummiesController#index as HTML
|
318
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
|
319
|
+
[1m[36mTxtblx::Textblock Load (0.3ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
320
|
+
ON txtblx_textblocks.id = t_published.record_id
|
321
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
322
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
323
|
+
Rendered dummies/index.html.erb within layouts/application (7.3ms)
|
324
|
+
Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.5ms)
|
325
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
326
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
327
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
328
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:41:48.979804"], ["updated_at", "2015-04-06 16:41:48.979804"]]
|
329
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:41:48.982003' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
330
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
331
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
332
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
333
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:41:48.983016"], ["updated_at", "2015-04-06 16:41:48.983016"]]
|
334
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
335
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
336
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:41:48.979804"], ["updated_at", "2015-04-06 16:41:48.985050"]]
|
337
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
338
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
339
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:41:48.987252' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
340
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
341
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
342
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
343
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:41:48.987863"], ["updated_at", "2015-04-06 16:41:48.987863"]]
|
344
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
345
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
346
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
347
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:44:04.310638"], ["updated_at", "2015-04-06 16:44:04.310638"]]
|
349
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:44:04.332477' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
350
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
351
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
352
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
353
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:44:04.337445"], ["updated_at", "2015-04-06 16:44:04.337445"]]
|
354
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
355
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
356
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:44:04.310638"], ["updated_at", "2015-04-06 16:44:04.339792"]]
|
357
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
358
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
359
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:44:04.342307' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
360
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
361
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
362
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
363
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:44:04.342937"], ["updated_at", "2015-04-06 16:44:04.342937"]]
|
364
|
+
[1m[36m (0.6ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
365
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 18:44:04 +0200
|
366
|
+
Processing by DummiesController#index as HTML
|
367
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
|
368
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
369
|
+
ON txtblx_textblocks.id = t_published.record_id
|
370
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
371
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
372
|
+
Rendered dummies/index.html.erb within layouts/application (5.2ms)
|
373
|
+
Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.3ms)
|
374
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
375
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
376
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
377
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:44:04.413645"], ["updated_at", "2015-04-06 16:44:04.413645"]]
|
378
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:44:04.415671' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
379
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
380
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
381
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
382
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:44:04.416425"], ["updated_at", "2015-04-06 16:44:04.416425"]]
|
383
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
384
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
385
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:44:04.413645"], ["updated_at", "2015-04-06 16:44:04.418203"]]
|
386
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
387
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
388
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:44:04.420094' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
389
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
390
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
391
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
392
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:44:04.420663"], ["updated_at", "2015-04-06 16:44:04.420663"]]
|
393
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
394
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
|
395
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
396
|
+
ON txtblx_textblocks.id = t_published.record_id
|
397
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
398
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
399
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
400
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
401
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
402
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:45:17.628272"], ["updated_at", "2015-04-06 16:45:17.628272"]]
|
403
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:45:17.653776' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
404
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
405
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
406
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
407
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:45:17.660046"], ["updated_at", "2015-04-06 16:45:17.660046"]]
|
408
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
409
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
410
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:45:17.628272"], ["updated_at", "2015-04-06 16:45:17.663028"]]
|
411
|
+
[1m[36m (45.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
412
|
+
[1m[35m (0.8ms)[0m SAVEPOINT active_record_1
|
413
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:45:17.712893' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
414
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
415
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
416
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
417
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:45:17.714323"], ["updated_at", "2015-04-06 16:45:17.714323"]]
|
418
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
419
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
|
420
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
421
|
+
ON txtblx_textblocks.id = t_published.record_id
|
422
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
423
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
424
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
425
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
426
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
427
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:45:17.728941"], ["updated_at", "2015-04-06 16:45:17.728941"]]
|
428
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:45:17.731594' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
429
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
430
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
431
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
432
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:45:17.732572"], ["updated_at", "2015-04-06 16:45:17.732572"]]
|
433
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
434
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
435
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:45:17.728941"], ["updated_at", "2015-04-06 16:45:17.734998"]]
|
436
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
437
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
438
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:45:17.737527' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
439
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
440
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
441
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
442
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:45:17.738321"], ["updated_at", "2015-04-06 16:45:17.738321"]]
|
443
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
444
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 18:45:17 +0200
|
445
|
+
Processing by DummiesController#index as HTML
|
446
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
|
447
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
448
|
+
ON txtblx_textblocks.id = t_published.record_id
|
449
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
450
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
451
|
+
Rendered dummies/index.html.erb within layouts/application (3.3ms)
|
452
|
+
Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.3ms)
|
453
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
454
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
455
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
456
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:54:02.258757"], ["updated_at", "2015-04-06 16:54:02.258757"]]
|
457
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:54:02.283175' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
458
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
459
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
460
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
461
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:54:02.288169"], ["updated_at", "2015-04-06 16:54:02.288169"]]
|
462
|
+
[1m[35m (0.7ms)[0m RELEASE SAVEPOINT active_record_1
|
463
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
464
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:54:02.258757"], ["updated_at", "2015-04-06 16:54:02.338100"]]
|
465
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
466
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
467
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:54:02.340695' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
468
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
469
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
470
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
471
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:54:02.341519"], ["updated_at", "2015-04-06 16:54:02.341519"]]
|
472
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
473
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
|
474
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
475
|
+
ON txtblx_textblocks.id = t_published.record_id
|
476
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
477
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
478
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
479
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
480
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
|
481
|
+
[1m[36mTxtblx::Textblock Load (0.0ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
482
|
+
ON txtblx_textblocks.id = t_published.record_id
|
483
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
484
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
485
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
486
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
487
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
488
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:54:02.357304"], ["updated_at", "2015-04-06 16:54:02.357304"]]
|
489
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:54:02.359951' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
490
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
491
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
492
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
493
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 16:54:02.360939"], ["updated_at", "2015-04-06 16:54:02.360939"]]
|
494
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
495
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
496
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 16:54:02.357304"], ["updated_at", "2015-04-06 16:54:02.362918"]]
|
497
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
498
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
499
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 16:54:02.365181' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
500
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
501
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
502
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
503
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 16:54:02.365891"], ["updated_at", "2015-04-06 16:54:02.365891"]]
|
504
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
505
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 18:54:02 +0200
|
506
|
+
Processing by DummiesController#index as HTML
|
507
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" ORDER BY "txtblx_textblocks"."id" ASC LIMIT 1
|
508
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
509
|
+
ON txtblx_textblocks.id = t_published.record_id
|
510
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
511
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
512
|
+
Rendered dummies/index.html.erb within layouts/application (2.7ms)
|
513
|
+
Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.2ms)
|
514
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
515
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
516
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
517
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:01:39.801180"], ["updated_at", "2015-04-06 17:01:39.801180"]]
|
518
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:01:39.827867' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
519
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
520
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
521
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
522
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:01:39.877875"], ["updated_at", "2015-04-06 17:01:39.877875"]]
|
523
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
524
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
525
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:01:39.801180"], ["updated_at", "2015-04-06 17:01:39.880567"]]
|
526
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
527
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
528
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:01:39.883045' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
529
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
530
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
531
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
532
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:01:39.883714"], ["updated_at", "2015-04-06 17:01:39.883714"]]
|
533
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
534
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
535
|
+
ON txtblx_textblocks.id = t_published.record_id
|
536
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
537
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
538
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
539
|
+
[1m[35m (0.0ms)[0m begin transaction
|
540
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
541
|
+
ON txtblx_textblocks.id = t_published.record_id
|
542
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
543
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
544
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
545
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
546
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
547
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:01:39.910660"], ["updated_at", "2015-04-06 17:01:39.910660"]]
|
548
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:01:39.912967' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
549
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
550
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
551
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
552
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:01:39.913810"], ["updated_at", "2015-04-06 17:01:39.913810"]]
|
553
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
554
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
555
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:01:39.910660"], ["updated_at", "2015-04-06 17:01:39.915850"]]
|
556
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
557
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
558
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:01:39.918003' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
559
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
560
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
561
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
562
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:01:39.918607"], ["updated_at", "2015-04-06 17:01:39.918607"]]
|
563
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
564
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 19:01:39 +0200
|
565
|
+
Processing by DummiesController#index as HTML
|
566
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
567
|
+
ON txtblx_textblocks.id = t_published.record_id
|
568
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
569
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
570
|
+
Rendered dummies/index.html.erb within layouts/application (2.8ms)
|
571
|
+
Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms)
|
572
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
573
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
574
|
+
[1m[35mTxtblx::Textblock Load (0.3ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
575
|
+
ON txtblx_textblocks.id = t_published.record_id
|
576
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
577
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
578
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
579
|
+
[1m[35m (0.1ms)[0m begin transaction
|
580
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
581
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:02:23.083424"], ["updated_at", "2015-04-06 17:02:23.083424"]]
|
582
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:02:23.100299' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
583
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
584
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
585
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
586
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:02:23.101608"], ["updated_at", "2015-04-06 17:02:23.101608"]]
|
587
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
588
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
589
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:02:23.083424"], ["updated_at", "2015-04-06 17:02:23.104557"]]
|
590
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
591
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
592
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:02:23.107720' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
593
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
594
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
595
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
596
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:02:23.108731"], ["updated_at", "2015-04-06 17:02:23.108731"]]
|
597
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
598
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
599
|
+
ON txtblx_textblocks.id = t_published.record_id
|
600
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
601
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
602
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
603
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
604
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
605
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:02:23.117677"], ["updated_at", "2015-04-06 17:02:23.117677"]]
|
606
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:02:23.120317' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
607
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
608
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
609
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
610
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:02:23.121372"], ["updated_at", "2015-04-06 17:02:23.121372"]]
|
611
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
612
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
613
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:02:23.117677"], ["updated_at", "2015-04-06 17:02:23.123707"]]
|
614
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
615
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
616
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:02:23.126185' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
617
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
618
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
619
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
620
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:02:23.127132"], ["updated_at", "2015-04-06 17:02:23.127132"]]
|
621
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
622
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 19:02:23 +0200
|
623
|
+
Processing by DummiesController#index as HTML
|
624
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
625
|
+
ON txtblx_textblocks.id = t_published.record_id
|
626
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
627
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
628
|
+
Rendered dummies/index.html.erb within layouts/application (3.0ms)
|
629
|
+
Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms)
|
630
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
631
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
632
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
633
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:15.250979"], ["updated_at", "2015-04-06 17:04:15.250979"]]
|
634
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:15.273967' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
635
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
636
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
637
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
638
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:04:15.279571"], ["updated_at", "2015-04-06 17:04:15.279571"]]
|
639
|
+
[1m[35m (0.9ms)[0m RELEASE SAVEPOINT active_record_1
|
640
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
641
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:15.250979"], ["updated_at", "2015-04-06 17:04:15.326631"]]
|
642
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
643
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
644
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:15.330376' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
645
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
646
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
647
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
648
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:04:15.331499"], ["updated_at", "2015-04-06 17:04:15.331499"]]
|
649
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
650
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
651
|
+
ON txtblx_textblocks.id = t_published.record_id
|
652
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
653
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
654
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
655
|
+
[1m[35m (0.0ms)[0m begin transaction
|
656
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
657
|
+
ON txtblx_textblocks.id = t_published.record_id
|
658
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
659
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
660
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
661
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
662
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
663
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:15.349903"], ["updated_at", "2015-04-06 17:04:15.349903"]]
|
664
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:15.351927' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
665
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
666
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
667
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
668
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:04:15.352661"], ["updated_at", "2015-04-06 17:04:15.352661"]]
|
669
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
670
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
671
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:15.349903"], ["updated_at", "2015-04-06 17:04:15.354670"]]
|
672
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
673
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
674
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:15.356953' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
675
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
676
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
677
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
678
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:04:15.357590"], ["updated_at", "2015-04-06 17:04:15.357590"]]
|
679
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
680
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 19:04:15 +0200
|
681
|
+
Processing by DummiesController#index as HTML
|
682
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
683
|
+
ON txtblx_textblocks.id = t_published.record_id
|
684
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
685
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
686
|
+
Rendered dummies/index.html.erb within layouts/application (2.4ms)
|
687
|
+
Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.1ms)
|
688
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
689
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
690
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
691
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:53.259720"], ["updated_at", "2015-04-06 17:04:53.259720"]]
|
692
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:53.282387' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
693
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
694
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
695
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
696
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:04:53.287081"], ["updated_at", "2015-04-06 17:04:53.287081"]]
|
697
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
698
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
699
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:53.259720"], ["updated_at", "2015-04-06 17:04:53.289355"]]
|
700
|
+
[1m[36m (0.8ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
701
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
702
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:53.332553' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
703
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
704
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
705
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
706
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:04:53.333642"], ["updated_at", "2015-04-06 17:04:53.333642"]]
|
707
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
708
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 19:04:53 +0200
|
709
|
+
Processing by DummiesController#index as HTML
|
710
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
711
|
+
ON txtblx_textblocks.id = t_published.record_id
|
712
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
713
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
714
|
+
Rendered dummies/index.html.erb within layouts/application (4.5ms)
|
715
|
+
Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.2ms)
|
716
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
717
|
+
[1m[35m (0.1ms)[0m begin transaction
|
718
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
719
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:53.364719"], ["updated_at", "2015-04-06 17:04:53.364719"]]
|
720
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:53.366818' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
721
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
722
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
723
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
724
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:04:53.367656"], ["updated_at", "2015-04-06 17:04:53.367656"]]
|
725
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
726
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
727
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:04:53.364719"], ["updated_at", "2015-04-06 17:04:53.369472"]]
|
728
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
729
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
730
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:04:53.371356' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
731
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
732
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
733
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
734
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:04:53.371927"], ["updated_at", "2015-04-06 17:04:53.371927"]]
|
735
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
736
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
737
|
+
ON txtblx_textblocks.id = t_published.record_id
|
738
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
739
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
740
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
741
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
742
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
743
|
+
ON txtblx_textblocks.id = t_published.record_id
|
744
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
745
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
746
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
747
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
748
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
749
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:06:34.833984"], ["updated_at", "2015-04-06 17:06:34.833984"]]
|
750
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:06:34.858559' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
751
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
752
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
753
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
754
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:06:34.904245"], ["updated_at", "2015-04-06 17:06:34.904245"]]
|
755
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
756
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
757
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:06:34.833984"], ["updated_at", "2015-04-06 17:06:34.907321"]]
|
758
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
759
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
760
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:06:34.910190' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
761
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
762
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
763
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
764
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:06:34.910905"], ["updated_at", "2015-04-06 17:06:34.910905"]]
|
765
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
766
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 19:06:34 +0200
|
767
|
+
Processing by DummiesController#index as HTML
|
768
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
769
|
+
ON txtblx_textblocks.id = t_published.record_id
|
770
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
771
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
772
|
+
Rendered dummies/index.html.erb within layouts/application (4.4ms)
|
773
|
+
Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms)
|
774
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
775
|
+
[1m[35m (0.1ms)[0m begin transaction
|
776
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
777
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:06:34.940451"], ["updated_at", "2015-04-06 17:06:34.940451"]]
|
778
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:06:34.942523' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
779
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
780
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
781
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
782
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:06:34.943263"], ["updated_at", "2015-04-06 17:06:34.943263"]]
|
783
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
784
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
785
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:06:34.940451"], ["updated_at", "2015-04-06 17:06:34.945084"]]
|
786
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
787
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
788
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:06:34.947171' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
789
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
790
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
791
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
792
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:06:34.947934"], ["updated_at", "2015-04-06 17:06:34.947934"]]
|
793
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
794
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
795
|
+
ON txtblx_textblocks.id = t_published.record_id
|
796
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
797
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
798
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
799
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
800
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
801
|
+
ON txtblx_textblocks.id = t_published.record_id
|
802
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
803
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
804
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
805
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
806
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
807
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:35:30.996831"], ["updated_at", "2015-04-06 17:35:30.996831"]]
|
808
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:35:31.027152' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
809
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
810
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
811
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
812
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:35:31.033341"], ["updated_at", "2015-04-06 17:35:31.033341"]]
|
813
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
814
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
815
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:35:30.996831"], ["updated_at", "2015-04-06 17:35:31.035965"]]
|
816
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
817
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
818
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:35:31.038728' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
819
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
820
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
821
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
822
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:35:31.039491"], ["updated_at", "2015-04-06 17:35:31.039491"]]
|
823
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
824
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 19:35:31 +0200
|
825
|
+
Processing by DummiesController#index as HTML
|
826
|
+
[1m[35mTxtblx::Textblock Load (0.3ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
827
|
+
ON txtblx_textblocks.id = t_published.record_id
|
828
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
829
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
830
|
+
Rendered dummies/index.html.erb within layouts/application (5.5ms)
|
831
|
+
Completed 200 OK in 61ms (Views: 60.7ms | ActiveRecord: 0.3ms)
|
832
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
833
|
+
[1m[35m (0.1ms)[0m begin transaction
|
834
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
835
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:35:31.129264"], ["updated_at", "2015-04-06 17:35:31.129264"]]
|
836
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:35:31.131660' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
837
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
838
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
839
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
840
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 17:35:31.132564"], ["updated_at", "2015-04-06 17:35:31.132564"]]
|
841
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
842
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
843
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 17:35:31.129264"], ["updated_at", "2015-04-06 17:35:31.134807"]]
|
844
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
845
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
846
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 17:35:31.137255' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
847
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
848
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
849
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
850
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 17:35:31.137988"], ["updated_at", "2015-04-06 17:35:31.137988"]]
|
851
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
852
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
853
|
+
ON txtblx_textblocks.id = t_published.record_id
|
854
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
855
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
856
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
857
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
858
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
859
|
+
ON txtblx_textblocks.id = t_published.record_id
|
860
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
861
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
862
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
863
|
+
[1m[36m (0.9ms)[0m [1mbegin transaction[0m
|
864
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
865
|
+
ON txtblx_textblocks.id = t_published.record_id
|
866
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
867
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
868
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
869
|
+
[1m[35m (0.1ms)[0m begin transaction
|
870
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
871
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:04:10.228291"], ["updated_at", "2015-04-06 18:04:10.228291"]]
|
872
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:04:10.289295' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
873
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
874
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
875
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
876
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:04:10.290781"], ["updated_at", "2015-04-06 18:04:10.290781"]]
|
877
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
878
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
879
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:04:10.228291"], ["updated_at", "2015-04-06 18:04:10.293907"]]
|
880
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
881
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
882
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:04:10.297147' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
883
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
884
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
885
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
886
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:04:10.298009"], ["updated_at", "2015-04-06 18:04:10.298009"]]
|
887
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
888
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
889
|
+
ON txtblx_textblocks.id = t_published.record_id
|
890
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
891
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
892
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
893
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
894
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
895
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:04:10.305721"], ["updated_at", "2015-04-06 18:04:10.305721"]]
|
896
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:04:10.308043' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
897
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
898
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
899
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
900
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:04:10.308988"], ["updated_at", "2015-04-06 18:04:10.308988"]]
|
901
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
902
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
903
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", "MyString"], ["text", "MyText"], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:04:10.305721"], ["updated_at", "2015-04-06 18:04:10.311523"]]
|
904
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
905
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
906
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:04:10.313669' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
907
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
908
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
909
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
910
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:04:10.314332"], ["updated_at", "2015-04-06 18:04:10.314332"]]
|
911
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
912
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 20:04:10 +0200
|
913
|
+
Processing by DummiesController#index as HTML
|
914
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
915
|
+
ON txtblx_textblocks.id = t_published.record_id
|
916
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
917
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
918
|
+
Rendered dummies/index.html.erb within layouts/application (2.4ms)
|
919
|
+
Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.1ms)
|
920
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
921
|
+
[1m[36m (0.9ms)[0m [1mbegin transaction[0m
|
922
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
923
|
+
ON txtblx_textblocks.id = t_published.record_id
|
924
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
925
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
926
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
927
|
+
[1m[35m (0.1ms)[0m begin transaction
|
928
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
929
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:45:10.423851"], ["updated_at", "2015-04-06 18:45:10.423851"]]
|
930
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:45:10.440741' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
931
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
932
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
933
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
934
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:45:10.441884"], ["updated_at", "2015-04-06 18:45:10.441884"]]
|
935
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
936
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
937
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:45:10.423851"], ["updated_at", "2015-04-06 18:45:10.444066"]]
|
938
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
939
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
940
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:45:10.446338' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
941
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
942
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
943
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
944
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:45:10.446925"], ["updated_at", "2015-04-06 18:45:10.446925"]]
|
945
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
946
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
947
|
+
ON txtblx_textblocks.id = t_published.record_id
|
948
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
949
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
950
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
951
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
952
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
953
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:45:10.452602"], ["updated_at", "2015-04-06 18:45:10.452602"]]
|
954
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:45:10.454498' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
955
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
956
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
957
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
958
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:45:10.455220"], ["updated_at", "2015-04-06 18:45:10.455220"]]
|
959
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
960
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
961
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:45:10.452602"], ["updated_at", "2015-04-06 18:45:10.457038"]]
|
962
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
963
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
964
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:45:10.459106' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
965
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
966
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
967
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
968
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:45:10.459846"], ["updated_at", "2015-04-06 18:45:10.459846"]]
|
969
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
970
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 20:45:10 +0200
|
971
|
+
Processing by DummiesController#index as HTML
|
972
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
973
|
+
ON txtblx_textblocks.id = t_published.record_id
|
974
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
975
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
976
|
+
Rendered dummies/index.html.erb within layouts/application (3.0ms)
|
977
|
+
Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.1ms)
|
978
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
979
|
+
[1m[35m (0.1ms)[0m begin transaction
|
980
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
981
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
982
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
983
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 18:46:32.175429"], ["updated_at", "2015-04-06 18:46:32.175429"]]
|
984
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:46:32.196527' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
985
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
986
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
987
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
988
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:46:32.202080"], ["updated_at", "2015-04-06 18:46:32.202080"]]
|
989
|
+
[1m[35m (0.7ms)[0m RELEASE SAVEPOINT active_record_1
|
990
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
991
|
+
[1m[35m (0.1ms)[0m begin transaction
|
992
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
993
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:46:32.251178"], ["updated_at", "2015-04-06 18:46:32.251178"]]
|
994
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:46:32.253280' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
995
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
996
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
997
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
998
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:46:32.254080"], ["updated_at", "2015-04-06 18:46:32.254080"]]
|
999
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1000
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1001
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:46:32.251178"], ["updated_at", "2015-04-06 18:46:32.256149"]]
|
1002
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1003
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1004
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:46:32.258413' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1005
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1006
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1007
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
1008
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:46:32.259345"], ["updated_at", "2015-04-06 18:46:32.259345"]]
|
1009
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1010
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1011
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1012
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1013
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1014
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1015
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1016
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1017
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1018
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1019
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1020
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1021
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1022
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1023
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:46:32.277751"], ["updated_at", "2015-04-06 18:46:32.277751"]]
|
1024
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:46:32.279820' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1025
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1026
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1027
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1028
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 18:46:32.280681"], ["updated_at", "2015-04-06 18:46:32.280681"]]
|
1029
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1030
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1031
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 18:46:32.277751"], ["updated_at", "2015-04-06 18:46:32.282606"]]
|
1032
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1033
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1034
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 18:46:32.284715' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1035
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1036
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1037
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
1038
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 18:46:32.285361"], ["updated_at", "2015-04-06 18:46:32.285361"]]
|
1039
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1040
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 20:46:32 +0200
|
1041
|
+
Processing by DummiesController#index as HTML
|
1042
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1043
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1044
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1045
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1046
|
+
Rendered dummies/index.html.erb within layouts/application (2.9ms)
|
1047
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.1ms)
|
1048
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1049
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1050
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1051
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:04:18.977924"], ["updated_at", "2015-04-06 19:04:18.977924"]]
|
1052
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:04:19.045111' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1053
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1054
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1055
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1056
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:04:19.050513"], ["updated_at", "2015-04-06 19:04:19.050513"]]
|
1057
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1058
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1059
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:04:18.977924"], ["updated_at", "2015-04-06 19:04:19.052910"]]
|
1060
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1061
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1062
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:04:19.055223' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1063
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1064
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1065
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1066
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:04:19.055849"], ["updated_at", "2015-04-06 19:04:19.055849"]]
|
1067
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1068
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:04:19 +0200
|
1069
|
+
Processing by DummiesController#index as HTML
|
1070
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1071
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1072
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1073
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1074
|
+
Rendered dummies/index.html.erb within layouts/application (5.3ms)
|
1075
|
+
Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.2ms)
|
1076
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1077
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1078
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1079
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1080
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1081
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1082
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1083
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1084
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1085
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:04:19.092530"], ["updated_at", "2015-04-06 19:04:19.092530"]]
|
1086
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:04:19.095079' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1087
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1088
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1089
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1090
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:04:19.096084"], ["updated_at", "2015-04-06 19:04:19.096084"]]
|
1091
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1092
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1093
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:04:19.092530"], ["updated_at", "2015-04-06 19:04:19.098331"]]
|
1094
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1095
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1096
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:04:19.100980' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1097
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1098
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1099
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1100
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:04:19.101856"], ["updated_at", "2015-04-06 19:04:19.101856"]]
|
1101
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1102
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1103
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1104
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1105
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1106
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1107
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1108
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1109
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:04:19.209221"], ["updated_at", "2015-04-06 19:04:19.209221"]]
|
1110
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:04:19.211504' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1111
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1112
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1113
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1114
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:04:19.212312"], ["updated_at", "2015-04-06 19:04:19.212312"]]
|
1115
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1116
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1117
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1118
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1119
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:05:00.995607"], ["updated_at", "2015-04-06 19:05:00.995607"]]
|
1120
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:05:01.055772' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1121
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1122
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1123
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1124
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:05:01.060468"], ["updated_at", "2015-04-06 19:05:01.060468"]]
|
1125
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1126
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1127
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1128
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1129
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:05:01.065219"], ["updated_at", "2015-04-06 19:05:01.065219"]]
|
1130
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:05:01.067275' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1131
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1132
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1133
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1134
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:05:01.068173"], ["updated_at", "2015-04-06 19:05:01.068173"]]
|
1135
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1136
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1137
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:05:01.065219"], ["updated_at", "2015-04-06 19:05:01.070206"]]
|
1138
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1139
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1140
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:05:01.072149' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1141
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1142
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1143
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
1144
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:05:01.072824"], ["updated_at", "2015-04-06 19:05:01.072824"]]
|
1145
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1146
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:05:01 +0200
|
1147
|
+
Processing by DummiesController#index as HTML
|
1148
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1149
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1150
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1151
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1152
|
+
Rendered dummies/index.html.erb within layouts/application (4.4ms)
|
1153
|
+
Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.2ms)
|
1154
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1155
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1156
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1157
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:05:01.100933"], ["updated_at", "2015-04-06 19:05:01.100933"]]
|
1158
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:05:01.103837' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1159
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1160
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1161
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1162
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:05:01.104997"], ["updated_at", "2015-04-06 19:05:01.104997"]]
|
1163
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1164
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1165
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:05:01.100933"], ["updated_at", "2015-04-06 19:05:01.107673"]]
|
1166
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1167
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1168
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:05:01.110643' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1169
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1170
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1171
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1172
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:05:01.111493"], ["updated_at", "2015-04-06 19:05:01.111493"]]
|
1173
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1174
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1175
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1176
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1177
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1178
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1179
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1180
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1181
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1182
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1183
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1184
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1185
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1186
|
+
[1m[35mTxtblx::Textblock Load (0.3ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1187
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1188
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1189
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1190
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1191
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1192
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1193
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:06:03.560760"], ["updated_at", "2015-04-06 19:06:03.560760"]]
|
1194
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:06:03.577885' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1195
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1196
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1197
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1198
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:06:03.579194"], ["updated_at", "2015-04-06 19:06:03.579194"]]
|
1199
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1200
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1201
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:06:03.560760"], ["updated_at", "2015-04-06 19:06:03.582233"]]
|
1202
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1203
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1204
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:06:03.585084' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1205
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1206
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1207
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
1208
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:06:03.585857"], ["updated_at", "2015-04-06 19:06:03.585857"]]
|
1209
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1210
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1211
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1212
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1213
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1214
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1215
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1216
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1217
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:06:03.593345"], ["updated_at", "2015-04-06 19:06:03.593345"]]
|
1218
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:06:03.595773' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1219
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1220
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1221
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1222
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:06:03.596642"], ["updated_at", "2015-04-06 19:06:03.596642"]]
|
1223
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1224
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1225
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:06:03.593345"], ["updated_at", "2015-04-06 19:06:03.598896"]]
|
1226
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1227
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1228
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:06:03.601340' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1229
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1230
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1231
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1232
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:06:03.602146"], ["updated_at", "2015-04-06 19:06:03.602146"]]
|
1233
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1234
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:06:03 +0200
|
1235
|
+
Processing by DummiesController#index as HTML
|
1236
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1237
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1238
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1239
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1240
|
+
Rendered dummies/index.html.erb within layouts/application (2.9ms)
|
1241
|
+
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms)
|
1242
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1243
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1244
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1245
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:06:03.737352"], ["updated_at", "2015-04-06 19:06:03.737352"]]
|
1246
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:06:03.739824' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1247
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1248
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1249
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1250
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:06:03.740747"], ["updated_at", "2015-04-06 19:06:03.740747"]]
|
1251
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1252
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1253
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1254
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1255
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:07:23.397045"], ["updated_at", "2015-04-06 19:07:23.397045"]]
|
1256
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:07:23.463512' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1257
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1258
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1259
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1260
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:07:23.469661"], ["updated_at", "2015-04-06 19:07:23.469661"]]
|
1261
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1262
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1263
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1264
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1265
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1266
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1267
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:07:23.475455"], ["updated_at", "2015-04-06 19:07:23.475455"]]
|
1268
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:07:23.477496' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1269
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1270
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1271
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1272
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:07:23.478255"], ["updated_at", "2015-04-06 19:07:23.478255"]]
|
1273
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1274
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1275
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:07:23.475455"], ["updated_at", "2015-04-06 19:07:23.480105"]]
|
1276
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1277
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1278
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:07:23.482075' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1279
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1280
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1281
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
1282
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:07:23.482638"], ["updated_at", "2015-04-06 19:07:23.482638"]]
|
1283
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1284
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:07:23 +0200
|
1285
|
+
Processing by DummiesController#index as HTML
|
1286
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1287
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1288
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1289
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1290
|
+
Rendered dummies/index.html.erb within layouts/application (4.5ms)
|
1291
|
+
Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.2ms)
|
1292
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1293
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1294
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1295
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:07:23.512611"], ["updated_at", "2015-04-06 19:07:23.512611"]]
|
1296
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:07:23.514871' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1297
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1298
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1299
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1300
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:07:23.515672"], ["updated_at", "2015-04-06 19:07:23.515672"]]
|
1301
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1302
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1303
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:07:23.512611"], ["updated_at", "2015-04-06 19:07:23.517674"]]
|
1304
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1305
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1306
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:07:23.519743' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1307
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1308
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1309
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1310
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:07:23.520373"], ["updated_at", "2015-04-06 19:07:23.520373"]]
|
1311
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1312
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1313
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1314
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1315
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1316
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1317
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1318
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1319
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1320
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1321
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1322
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1323
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1324
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1325
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:10:22.609221"], ["updated_at", "2015-04-06 19:10:22.609221"]]
|
1326
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:10:22.690062' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1327
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1328
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1329
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1330
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:10:22.695028"], ["updated_at", "2015-04-06 19:10:22.695028"]]
|
1331
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1332
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1333
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1334
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1335
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1336
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1337
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:10:22.703266"], ["updated_at", "2015-04-06 19:10:22.703266"]]
|
1338
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:10:22.705398' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1339
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1340
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1341
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1342
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:10:22.706153"], ["updated_at", "2015-04-06 19:10:22.706153"]]
|
1343
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1344
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1345
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:10:22.703266"], ["updated_at", "2015-04-06 19:10:22.707970"]]
|
1346
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1347
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1348
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:10:22.710141' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1349
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1350
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1351
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
1352
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:10:22.710820"], ["updated_at", "2015-04-06 19:10:22.710820"]]
|
1353
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1354
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1355
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1356
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1357
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1358
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1359
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1360
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1361
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1362
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1363
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1364
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1365
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1366
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1367
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:10:22.727972"], ["updated_at", "2015-04-06 19:10:22.727972"]]
|
1368
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:10:22.730203' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1369
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1370
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1371
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1372
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:10:22.731096"], ["updated_at", "2015-04-06 19:10:22.731096"]]
|
1373
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1374
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1375
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:10:22.727972"], ["updated_at", "2015-04-06 19:10:22.733840"]]
|
1376
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1377
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1378
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:10:22.736913' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1379
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1380
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1381
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
1382
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:10:22.737949"], ["updated_at", "2015-04-06 19:10:22.737949"]]
|
1383
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1384
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:10:22 +0200
|
1385
|
+
Processing by DummiesController#index as HTML
|
1386
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1387
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1388
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1389
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1390
|
+
Rendered dummies/index.html.erb within layouts/application (2.5ms)
|
1391
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.1ms)
|
1392
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1393
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1394
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1395
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:06.451040"], ["updated_at", "2015-04-06 19:11:06.451040"]]
|
1396
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:06.517098' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1397
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1398
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1399
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1400
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:06.521865"], ["updated_at", "2015-04-06 19:11:06.521865"]]
|
1401
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1402
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1403
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:06.451040"], ["updated_at", "2015-04-06 19:11:06.524527"]]
|
1404
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1405
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1406
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:06.533023' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1407
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1408
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1409
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1410
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:11:06.534023"], ["updated_at", "2015-04-06 19:11:06.534023"]]
|
1411
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1412
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1413
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1414
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1415
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1416
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1417
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1418
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1419
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1420
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1421
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1422
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1423
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1424
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1425
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:06.555357"], ["updated_at", "2015-04-06 19:11:06.555357"]]
|
1426
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:06.558029' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1427
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1428
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1429
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1430
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:06.559105"], ["updated_at", "2015-04-06 19:11:06.559105"]]
|
1431
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1432
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1433
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:06.555357"], ["updated_at", "2015-04-06 19:11:06.561502"]]
|
1434
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1435
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1436
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:06.563987' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1437
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1438
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1439
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1440
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:11:06.564774"], ["updated_at", "2015-04-06 19:11:06.564774"]]
|
1441
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1442
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:11:06 +0200
|
1443
|
+
Processing by DummiesController#index as HTML
|
1444
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1445
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1446
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1447
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1448
|
+
Rendered dummies/index.html.erb within layouts/application (3.0ms)
|
1449
|
+
Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.1ms)
|
1450
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1451
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1452
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1453
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:11:06.702404"], ["updated_at", "2015-04-06 19:11:06.702404"]]
|
1454
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:06.705028' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1455
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1456
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1457
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1458
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:06.705975"], ["updated_at", "2015-04-06 19:11:06.705975"]]
|
1459
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1460
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1461
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1462
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
|
1463
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1464
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1465
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1466
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:42.405259"], ["updated_at", "2015-04-06 19:11:42.405259"]]
|
1467
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:42.470638' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1468
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1469
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1470
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1471
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:42.475403"], ["updated_at", "2015-04-06 19:11:42.475403"]]
|
1472
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1473
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1474
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:42.405259"], ["updated_at", "2015-04-06 19:11:42.477610"]]
|
1475
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1476
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1477
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:42.479935' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1478
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1479
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1480
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1481
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:11:42.480558"], ["updated_at", "2015-04-06 19:11:42.480558"]]
|
1482
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1483
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:11:42 +0200
|
1484
|
+
Processing by DummiesController#index as HTML
|
1485
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1486
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1487
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1488
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1489
|
+
Rendered dummies/index.html.erb within layouts/application (4.2ms)
|
1490
|
+
Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms)
|
1491
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1492
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1493
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1494
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1495
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1496
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1497
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1498
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1499
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1500
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:42.518447"], ["updated_at", "2015-04-06 19:11:42.518447"]]
|
1501
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:42.520844' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1502
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1503
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1504
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1505
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:42.521907"], ["updated_at", "2015-04-06 19:11:42.521907"]]
|
1506
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1507
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1508
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:11:42.518447"], ["updated_at", "2015-04-06 19:11:42.524350"]]
|
1509
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1510
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1511
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:42.526676' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1512
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1513
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1514
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1515
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:11:42.527356"], ["updated_at", "2015-04-06 19:11:42.527356"]]
|
1516
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1517
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1518
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1519
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1520
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1521
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1522
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1523
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1524
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:11:42.629441"], ["updated_at", "2015-04-06 19:11:42.629441"]]
|
1525
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:11:42.632065' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1526
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1527
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1528
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1529
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:11:42.633007"], ["updated_at", "2015-04-06 19:11:42.633007"]]
|
1530
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1531
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1532
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1533
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
|
1534
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1535
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1536
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1537
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:13:40.631293"], ["updated_at", "2015-04-06 19:13:40.631293"]]
|
1538
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:13:40.698256' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1539
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1540
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1541
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1542
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:13:40.705155"], ["updated_at", "2015-04-06 19:13:40.705155"]]
|
1543
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1544
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1545
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:13:40.631293"], ["updated_at", "2015-04-06 19:13:40.708141"]]
|
1546
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1547
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1548
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:13:40.710647' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1549
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1550
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1551
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1552
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:13:40.711354"], ["updated_at", "2015-04-06 19:13:40.711354"]]
|
1553
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1554
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:13:40 +0200
|
1555
|
+
Processing by DummiesController#index as HTML
|
1556
|
+
[1m[35mTxtblx::Textblock Load (0.3ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1557
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1558
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1559
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1560
|
+
Rendered dummies/index.html.erb within layouts/application (5.7ms)
|
1561
|
+
Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.3ms)
|
1562
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1563
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1564
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1565
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1566
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1567
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1568
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1569
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1570
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1571
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:13:40.753014"], ["updated_at", "2015-04-06 19:13:40.753014"]]
|
1572
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:13:40.755106' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1573
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1574
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1575
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1576
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:13:40.755892"], ["updated_at", "2015-04-06 19:13:40.755892"]]
|
1577
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1578
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1579
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:13:40.753014"], ["updated_at", "2015-04-06 19:13:40.757833"]]
|
1580
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1581
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1582
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:13:40.759841' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1583
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1584
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1585
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1586
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:13:40.762405"], ["updated_at", "2015-04-06 19:13:40.762405"]]
|
1587
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1588
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1589
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1590
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1591
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1592
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1593
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1594
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1595
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:13:40.853427"], ["updated_at", "2015-04-06 19:13:40.853427"]]
|
1596
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:13:40.855491' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1597
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1598
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1599
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1600
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:13:40.856266"], ["updated_at", "2015-04-06 19:13:40.856266"]]
|
1601
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1602
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1603
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1604
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
|
1605
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1606
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1607
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1608
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:14:29.300313"], ["updated_at", "2015-04-06 19:14:29.300313"]]
|
1609
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:14:29.361385' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1610
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1611
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1612
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1613
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:14:29.366173"], ["updated_at", "2015-04-06 19:14:29.366173"]]
|
1614
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1615
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1616
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:14:29.300313"], ["updated_at", "2015-04-06 19:14:29.368393"]]
|
1617
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1618
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1619
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:14:29.370749' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1620
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1621
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1622
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1623
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:14:29.371388"], ["updated_at", "2015-04-06 19:14:29.371388"]]
|
1624
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1625
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:14:29 +0200
|
1626
|
+
Processing by DummiesController#index as HTML
|
1627
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1628
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1629
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1630
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1631
|
+
Rendered dummies/index.html.erb within layouts/application (4.4ms)
|
1632
|
+
Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.2ms)
|
1633
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1634
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1635
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1636
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1637
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1638
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1639
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1640
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1641
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1642
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:14:29.410910"], ["updated_at", "2015-04-06 19:14:29.410910"]]
|
1643
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:14:29.413563' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1644
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1645
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1646
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1647
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:14:29.414560"], ["updated_at", "2015-04-06 19:14:29.414560"]]
|
1648
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1649
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1650
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:14:29.410910"], ["updated_at", "2015-04-06 19:14:29.417116"]]
|
1651
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1652
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1653
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:14:29.419221' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1654
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1655
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1656
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1657
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:14:29.420233"], ["updated_at", "2015-04-06 19:14:29.420233"]]
|
1658
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1659
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1660
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1661
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1662
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1663
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1664
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1665
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1666
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:14:29.508894"], ["updated_at", "2015-04-06 19:14:29.508894"]]
|
1667
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:14:29.510964' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1668
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1669
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1670
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1671
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:14:29.511706"], ["updated_at", "2015-04-06 19:14:29.511706"]]
|
1672
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1673
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1674
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1675
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
|
1676
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1677
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1678
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1679
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:16:47.582720"], ["updated_at", "2015-04-06 19:16:47.582720"]]
|
1680
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:16:47.648069' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1681
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1682
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1683
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1684
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:16:47.653065"], ["updated_at", "2015-04-06 19:16:47.653065"]]
|
1685
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1686
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1687
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:16:47.582720"], ["updated_at", "2015-04-06 19:16:47.655278"]]
|
1688
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1689
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1690
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:16:47.657526' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1691
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1692
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1693
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1694
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:16:47.658146"], ["updated_at", "2015-04-06 19:16:47.658146"]]
|
1695
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1696
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:16:47 +0200
|
1697
|
+
Processing by DummiesController#index as HTML
|
1698
|
+
[1m[35mTxtblx::Textblock Load (0.4ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1699
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1700
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1701
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1702
|
+
Rendered dummies/index.html.erb within layouts/application (5.2ms)
|
1703
|
+
Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.4ms)
|
1704
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1705
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1706
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1707
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:16:47.772862"], ["updated_at", "2015-04-06 19:16:47.772862"]]
|
1708
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:16:47.775166' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1709
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1710
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1711
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1712
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:16:47.775961"], ["updated_at", "2015-04-06 19:16:47.775961"]]
|
1713
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1714
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1715
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1716
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
|
1717
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1718
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1719
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1720
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:16:47.783246"], ["updated_at", "2015-04-06 19:16:47.783246"]]
|
1721
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:16:47.785266' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1722
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1723
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1724
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1725
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:16:47.785993"], ["updated_at", "2015-04-06 19:16:47.785993"]]
|
1726
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1727
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1728
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:16:47.783246"], ["updated_at", "2015-04-06 19:16:47.787735"]]
|
1729
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1730
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1731
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:16:47.790235' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1732
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1733
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1734
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
1735
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:16:47.790986"], ["updated_at", "2015-04-06 19:16:47.790986"]]
|
1736
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1737
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1738
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1739
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1740
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1741
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1742
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1743
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1744
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1745
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1746
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1747
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1748
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1749
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1750
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1751
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1752
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1753
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1754
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1755
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1756
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:17:36.055980"], ["updated_at", "2015-04-06 19:17:36.055980"]]
|
1757
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:17:36.071406' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1758
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1759
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1760
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1761
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:17:36.072545"], ["updated_at", "2015-04-06 19:17:36.072545"]]
|
1762
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1763
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1764
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:17:36.055980"], ["updated_at", "2015-04-06 19:17:36.075505"]]
|
1765
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1766
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1767
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:17:36.078949' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1768
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1769
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1770
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
1771
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:17:36.079673"], ["updated_at", "2015-04-06 19:17:36.079673"]]
|
1772
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1773
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1774
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1775
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1776
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1777
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1778
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1779
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1780
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "some.key"], ["description", ""], ["text", "Some Text"], ["text_html", ""], ["path", "MyString"], ["created_at", "2015-04-06 19:17:36.171721"], ["updated_at", "2015-04-06 19:17:36.171721"]]
|
1781
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:17:36.173755' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1782
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1783
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1784
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1785
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:17:36.174508"], ["updated_at", "2015-04-06 19:17:36.174508"]]
|
1786
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1787
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1788
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1789
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1[0m [["id", 1]]
|
1790
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1791
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1792
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1793
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:17:36.181843"], ["updated_at", "2015-04-06 19:17:36.181843"]]
|
1794
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:17:36.184524' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1795
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1796
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1797
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1798
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:17:36.185607"], ["updated_at", "2015-04-06 19:17:36.185607"]]
|
1799
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1800
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1801
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:17:36.181843"], ["updated_at", "2015-04-06 19:17:36.188166"]]
|
1802
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1803
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1804
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:17:36.190521' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1805
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1806
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1807
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1808
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:17:36.191171"], ["updated_at", "2015-04-06 19:17:36.191171"]]
|
1809
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1810
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:17:36 +0200
|
1811
|
+
Processing by DummiesController#index as HTML
|
1812
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1813
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1814
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1815
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1816
|
+
Rendered dummies/index.html.erb within layouts/application (2.7ms)
|
1817
|
+
Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms)
|
1818
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1819
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1820
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1821
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"[0m
|
1822
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:41:29.201013"], ["updated_at", "2015-04-06 19:41:29.201013"]]
|
1823
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:41:29.273229' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1824
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1825
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1826
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1827
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:41:29.279230"], ["updated_at", "2015-04-06 19:41:29.279230"]]
|
1828
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1829
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1830
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1831
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
|
1832
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1833
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1834
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1835
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1836
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1837
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1838
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1839
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1840
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1841
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:41:29.299360"], ["updated_at", "2015-04-06 19:41:29.299360"]]
|
1842
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:41:29.301626' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1843
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1844
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1845
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1846
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:41:29.302569"], ["updated_at", "2015-04-06 19:41:29.302569"]]
|
1847
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1848
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1849
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:41:29.299360"], ["updated_at", "2015-04-06 19:41:29.304705"]]
|
1850
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1851
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1852
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:41:29.307144' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1853
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1854
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1855
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1856
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:41:29.307816"], ["updated_at", "2015-04-06 19:41:29.307816"]]
|
1857
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1858
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1859
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1860
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1861
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1862
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1863
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1864
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1865
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:41:29.314098"], ["updated_at", "2015-04-06 19:41:29.314098"]]
|
1866
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:41:29.316044' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1867
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1868
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1869
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1870
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:41:29.316778"], ["updated_at", "2015-04-06 19:41:29.316778"]]
|
1871
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1872
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1873
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:41:29.314098"], ["updated_at", "2015-04-06 19:41:29.318662"]]
|
1874
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1875
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1876
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:41:29.320717' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1877
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1878
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1879
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
1880
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:41:29.321358"], ["updated_at", "2015-04-06 19:41:29.321358"]]
|
1881
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1882
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:41:29 +0200
|
1883
|
+
Processing by DummiesController#index as HTML
|
1884
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1885
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1886
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1887
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1888
|
+
Rendered dummies/index.html.erb within layouts/application (3.4ms)
|
1889
|
+
Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.1ms)
|
1890
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1891
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1892
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1893
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"[0m
|
1894
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:44:06.836300"], ["updated_at", "2015-04-06 19:44:06.836300"]]
|
1895
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:06.905707' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1896
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1897
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1898
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1899
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:06.911458"], ["updated_at", "2015-04-06 19:44:06.911458"]]
|
1900
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1901
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" WHERE "txtblx_textblocks"."id" = ? LIMIT 1 [["id", 1]]
|
1902
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1903
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1904
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1905
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:06.920479"], ["updated_at", "2015-04-06 19:44:06.920479"]]
|
1906
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:06.922887' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1907
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1908
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1909
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
1910
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:06.923750"], ["updated_at", "2015-04-06 19:44:06.923750"]]
|
1911
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1912
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1913
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:06.920479"], ["updated_at", "2015-04-06 19:44:06.925976"]]
|
1914
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1915
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1916
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:06.928318' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1917
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1918
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1919
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
1920
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:44:06.929069"], ["updated_at", "2015-04-06 19:44:06.929069"]]
|
1921
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1922
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:44:06 +0200
|
1923
|
+
Processing by DummiesController#index as HTML
|
1924
|
+
[1m[36mTxtblx::Textblock Load (0.2ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1925
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1926
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1927
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1928
|
+
Rendered dummies/index.html.erb within layouts/application (3.2ms)
|
1929
|
+
Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.2ms)
|
1930
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1931
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1932
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1933
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:06.959166"], ["updated_at", "2015-04-06 19:44:06.959166"]]
|
1934
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:06.961641' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1935
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1936
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1937
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1938
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:06.962543"], ["updated_at", "2015-04-06 19:44:06.962543"]]
|
1939
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1940
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1941
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:06.959166"], ["updated_at", "2015-04-06 19:44:06.964726"]]
|
1942
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1943
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1944
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:06.967110' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1945
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1946
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1947
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1948
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:44:06.967816"], ["updated_at", "2015-04-06 19:44:06.967816"]]
|
1949
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1950
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1951
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1952
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1953
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1954
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1955
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1956
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1957
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1958
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1959
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1960
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1961
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1962
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1963
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:24.876604"], ["updated_at", "2015-04-06 19:44:24.876604"]]
|
1964
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:24.938134' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1965
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1966
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1967
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
1968
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:24.942803"], ["updated_at", "2015-04-06 19:44:24.942803"]]
|
1969
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1970
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1971
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:24.876604"], ["updated_at", "2015-04-06 19:44:24.945019"]]
|
1972
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1973
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1974
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:24.947234' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1975
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
1976
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
1977
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
1978
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:44:24.947851"], ["updated_at", "2015-04-06 19:44:24.947851"]]
|
1979
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1980
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:44:24 +0200
|
1981
|
+
Processing by DummiesController#index as HTML
|
1982
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1983
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1984
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1985
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
1986
|
+
Rendered dummies/index.html.erb within layouts/application (4.4ms)
|
1987
|
+
Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.2ms)
|
1988
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1989
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1990
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
1991
|
+
ON txtblx_textblocks.id = t_published.record_id
|
1992
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
1993
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
1994
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1995
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1996
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1997
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:24.984934"], ["updated_at", "2015-04-06 19:44:24.984934"]]
|
1998
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:24.987141' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
1999
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2000
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2001
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2002
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:24.987903"], ["updated_at", "2015-04-06 19:44:24.987903"]]
|
2003
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2004
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2005
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:44:24.984934"], ["updated_at", "2015-04-06 19:44:24.989750"]]
|
2006
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2007
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2008
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:24.991943' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2009
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2010
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2011
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2012
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:44:24.992601"], ["updated_at", "2015-04-06 19:44:24.992601"]]
|
2013
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2014
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2015
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2016
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2017
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2018
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2019
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2020
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2021
|
+
[1m[35m (0.2ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2022
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:44:25.078960"], ["updated_at", "2015-04-06 19:44:25.078960"]]
|
2023
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:44:25.080946' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2024
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2025
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2026
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2027
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:44:25.081661"], ["updated_at", "2015-04-06 19:44:25.081661"]]
|
2028
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2029
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2030
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2031
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2032
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"[0m
|
2033
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:46:00.600932"], ["updated_at", "2015-04-06 19:46:00.600932"]]
|
2034
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:00.679597' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2035
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2036
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2037
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2038
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:00.685159"], ["updated_at", "2015-04-06 19:46:00.685159"]]
|
2039
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2040
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2041
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2042
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2043
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:00.690696"], ["updated_at", "2015-04-06 19:46:00.690696"]]
|
2044
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:00.693035' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2045
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2046
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2047
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2048
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:00.693882"], ["updated_at", "2015-04-06 19:46:00.693882"]]
|
2049
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2050
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2051
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:00.690696"], ["updated_at", "2015-04-06 19:46:00.696083"]]
|
2052
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2053
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2054
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:00.698483' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2055
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2056
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2057
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2058
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:46:00.699173"], ["updated_at", "2015-04-06 19:46:00.699173"]]
|
2059
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2060
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:46:00 +0200
|
2061
|
+
Processing by DummiesController#index as HTML
|
2062
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2063
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2064
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2065
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2066
|
+
Rendered dummies/index.html.erb within layouts/application (5.1ms)
|
2067
|
+
Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.2ms)
|
2068
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2069
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2070
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2071
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:00.731063"], ["updated_at", "2015-04-06 19:46:00.731063"]]
|
2072
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:00.733556' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2073
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2074
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2075
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2076
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:00.734456"], ["updated_at", "2015-04-06 19:46:00.734456"]]
|
2077
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2078
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2079
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:00.731063"], ["updated_at", "2015-04-06 19:46:00.736607"]]
|
2080
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2081
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2082
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:00.739085' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2083
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2084
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2085
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
2086
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:46:00.739817"], ["updated_at", "2015-04-06 19:46:00.739817"]]
|
2087
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2088
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2089
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2090
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2091
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
2092
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
2093
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2094
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2095
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2096
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2097
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2098
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2099
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2100
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2101
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"[0m
|
2102
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:46:23.159385"], ["updated_at", "2015-04-06 19:46:23.159385"]]
|
2103
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:23.225035' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2104
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2105
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2106
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2107
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:23.229867"], ["updated_at", "2015-04-06 19:46:23.229867"]]
|
2108
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2109
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2110
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2111
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2112
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2113
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2114
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2115
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2116
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2117
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2118
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:23.245734"], ["updated_at", "2015-04-06 19:46:23.245734"]]
|
2119
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:23.247827' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2120
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2121
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2122
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2123
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:23.248551"], ["updated_at", "2015-04-06 19:46:23.248551"]]
|
2124
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2125
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2126
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:23.245734"], ["updated_at", "2015-04-06 19:46:23.250485"]]
|
2127
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2128
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2129
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:23.252424' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2130
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2131
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2132
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
2133
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:46:23.253034"], ["updated_at", "2015-04-06 19:46:23.253034"]]
|
2134
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2135
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2136
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2137
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2138
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
2139
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2140
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2141
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2142
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:23.260245"], ["updated_at", "2015-04-06 19:46:23.260245"]]
|
2143
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:23.262667' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2144
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2145
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2146
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2147
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:46:23.263613"], ["updated_at", "2015-04-06 19:46:23.263613"]]
|
2148
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2149
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2150
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:46:23.260245"], ["updated_at", "2015-04-06 19:46:23.266057"]]
|
2151
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2152
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2153
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:46:23.268650' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2154
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2155
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2156
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2157
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:46:23.269455"], ["updated_at", "2015-04-06 19:46:23.269455"]]
|
2158
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2159
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:46:23 +0200
|
2160
|
+
Processing by DummiesController#index as HTML
|
2161
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2162
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2163
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2164
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2165
|
+
Rendered dummies/index.html.erb within layouts/application (2.8ms)
|
2166
|
+
Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms)
|
2167
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2168
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2169
|
+
[1m[35mTxtblx::Textblock Load (0.4ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2170
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2171
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2172
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2173
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2174
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2175
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2176
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:53:12.492596"], ["updated_at", "2015-04-06 19:53:12.492596"]]
|
2177
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.510053' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2178
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2179
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2180
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2181
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:53:12.511552"], ["updated_at", "2015-04-06 19:53:12.511552"]]
|
2182
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2183
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2184
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:53:12.492596"], ["updated_at", "2015-04-06 19:53:12.514583"]]
|
2185
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2186
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2187
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.517288' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2188
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2189
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2190
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
2191
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:53:12.518089"], ["updated_at", "2015-04-06 19:53:12.518089"]]
|
2192
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2193
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2194
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2195
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2196
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
2197
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
2198
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2199
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2200
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:53:12.527890"], ["updated_at", "2015-04-06 19:53:12.527890"]]
|
2201
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.531259' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2202
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2203
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2204
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2205
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:53:12.532295"], ["updated_at", "2015-04-06 19:53:12.532295"]]
|
2206
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2207
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2208
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 19:53:12.527890"], ["updated_at", "2015-04-06 19:53:12.534952"]]
|
2209
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2210
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2211
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.537715' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2212
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2213
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2214
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2215
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 19:53:12.538544"], ["updated_at", "2015-04-06 19:53:12.538544"]]
|
2216
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2217
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 21:53:12 +0200
|
2218
|
+
Processing by DummiesController#index as HTML
|
2219
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2220
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2221
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2222
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2223
|
+
Rendered dummies/index.html.erb within layouts/application (8.2ms)
|
2224
|
+
Completed 200 OK in 27ms (Views: 26.7ms | ActiveRecord: 0.1ms)
|
2225
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2226
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2227
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2228
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2229
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text with http://example.com"], ["text_html", "<p>some text with <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:53:12.734997"], ["updated_at", "2015-04-06 19:53:12.734997"]]
|
2230
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.737398' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2231
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2232
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2233
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2234
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:53:12.738156"], ["updated_at", "2015-04-06 19:53:12.738156"]]
|
2235
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2236
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2237
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2238
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2239
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2240
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 19:53:12.742167"], ["updated_at", "2015-04-06 19:53:12.742167"]]
|
2241
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 19:53:12.744036' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2242
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2243
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2244
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2245
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 19:53:12.744802"], ["updated_at", "2015-04-06 19:53:12.744802"]]
|
2246
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2247
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2248
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2249
|
+
[1m[35mTxtblx::Textblock Load (0.3ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2250
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2251
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2252
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2253
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2254
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2255
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2256
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:03:00.091181"], ["updated_at", "2015-04-06 20:03:00.091181"]]
|
2257
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.105175' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2258
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2259
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2260
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2261
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:03:00.106152"], ["updated_at", "2015-04-06 20:03:00.106152"]]
|
2262
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2263
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2264
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:03:00.091181"], ["updated_at", "2015-04-06 20:03:00.108332"]]
|
2265
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2266
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2267
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.110749' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2268
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2269
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2270
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
2271
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 20:03:00.111380"], ["updated_at", "2015-04-06 20:03:00.111380"]]
|
2272
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2273
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2274
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2275
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2276
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
2277
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1
2278
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2279
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2280
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"[0m
|
2281
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-06 20:03:00.207973"], ["updated_at", "2015-04-06 20:03:00.207973"]]
|
2282
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.210024' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2283
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2284
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2285
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2286
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:03:00.210738"], ["updated_at", "2015-04-06 20:03:00.210738"]]
|
2287
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2288
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2289
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2290
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2291
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"[0m
|
2292
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 20:03:00.215098"], ["updated_at", "2015-04-06 20:03:00.215098"]]
|
2293
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.216803' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2294
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2295
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2296
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2297
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:03:00.217472"], ["updated_at", "2015-04-06 20:03:00.217472"]]
|
2298
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2
2299
|
[1m[35m (0.1ms)[0m rollback transaction
|
3
2300
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4
|
-
[1m[35m (0.
|
2301
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2302
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:03:00.221833"], ["updated_at", "2015-04-06 20:03:00.221833"]]
|
2303
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.223864' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2304
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2305
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2306
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2307
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:03:00.224678"], ["updated_at", "2015-04-06 20:03:00.224678"]]
|
2308
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2309
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2310
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:03:00.221833"], ["updated_at", "2015-04-06 20:03:00.226593"]]
|
2311
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2312
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2313
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:03:00.228593' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2314
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2315
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2316
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2317
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 20:03:00.229213"], ["updated_at", "2015-04-06 20:03:00.229213"]]
|
2318
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2319
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 22:03:00 +0200
|
2320
|
+
Processing by DummiesController#index as HTML
|
2321
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2322
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2323
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2324
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2325
|
+
Rendered dummies/index.html.erb within layouts/application (2.5ms)
|
2326
|
+
Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.1ms)
|
2327
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
5
2328
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6
|
-
[1m[35m (0.
|
2329
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2330
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:21:04.043724"], ["updated_at", "2015-04-06 20:21:04.043724"]]
|
2331
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.067229' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2332
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2333
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2334
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2335
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:21:04.069067"], ["updated_at", "2015-04-06 20:21:04.069067"]]
|
2336
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2337
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2338
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:21:04.043724"], ["updated_at", "2015-04-06 20:21:04.071358"]]
|
2339
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2340
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2341
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.073640' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2342
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2343
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2344
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2345
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 20:21:04.074285"], ["updated_at", "2015-04-06 20:21:04.074285"]]
|
2346
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2347
|
+
Started GET "/" for 127.0.0.1 at 2015-04-06 22:21:04 +0200
|
2348
|
+
Processing by DummiesController#index as HTML
|
2349
|
+
[1m[35mTxtblx::Textblock Load (0.3ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2350
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2351
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2352
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2353
|
+
Rendered dummies/index.html.erb within layouts/application (5.0ms)
|
2354
|
+
Completed 200 OK in 58ms (Views: 57.8ms | ActiveRecord: 0.3ms)
|
2355
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2356
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2357
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2358
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2359
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 20:21:04.231902"], ["updated_at", "2015-04-06 20:21:04.231902"]]
|
2360
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.233924' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2361
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2362
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2363
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2364
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:21:04.234700"], ["updated_at", "2015-04-06 20:21:04.234700"]]
|
2365
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2366
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2367
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2368
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2369
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2370
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-06 20:21:04.238361"], ["updated_at", "2015-04-06 20:21:04.238361"]]
|
2371
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.239754' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2372
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2373
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2374
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2375
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:21:04.240355"], ["updated_at", "2015-04-06 20:21:04.240355"]]
|
2376
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2377
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2378
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2379
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2380
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:21:04.246566"], ["updated_at", "2015-04-06 20:21:04.246566"]]
|
2381
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.249038' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2382
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2383
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2384
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2385
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 20:21:04.250004"], ["updated_at", "2015-04-06 20:21:04.250004"]]
|
2386
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2387
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2388
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 20:21:04.246566"], ["updated_at", "2015-04-06 20:21:04.252329"]]
|
2389
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2390
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2391
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 20:21:04.254472' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2392
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2393
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2394
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
2395
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 20:21:04.255085"], ["updated_at", "2015-04-06 20:21:04.255085"]]
|
2396
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2397
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2398
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2399
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2400
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
2401
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7
2402
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
8
|
-
[1m[
|
2403
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2404
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2405
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2406
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2407
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2408
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2409
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2410
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:14:08.663671"], ["updated_at", "2015-04-06 22:14:08.663671"]]
|
2411
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:08.689226' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2412
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2413
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2414
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2415
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:14:08.691389"], ["updated_at", "2015-04-06 22:14:08.691389"]]
|
2416
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2417
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2418
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:14:08.663671"], ["updated_at", "2015-04-06 22:14:08.694122"]]
|
2419
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2420
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2421
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:08.696762' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2422
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2423
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2424
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2425
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 22:14:08.697503"], ["updated_at", "2015-04-06 22:14:08.697503"]]
|
2426
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2427
|
+
Started GET "/" for 127.0.0.1 at 2015-04-07 00:14:08 +0200
|
2428
|
+
Processing by DummiesController#index as HTML
|
2429
|
+
[1m[35mTxtblx::Textblock Load (0.3ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2430
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2431
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2432
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2433
|
+
Rendered dummies/index.html.erb within layouts/application (5.8ms)
|
2434
|
+
Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.3ms)
|
2435
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2436
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2437
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2438
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2439
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2440
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
2441
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
9
2442
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
10
|
-
[1m[35m (0.
|
2443
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2444
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:14:08.926199"], ["updated_at", "2015-04-06 22:14:08.926199"]]
|
2445
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:08.929043' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2446
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2447
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2448
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2449
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:14:08.930154"], ["updated_at", "2015-04-06 22:14:08.930154"]]
|
2450
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2451
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2452
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:14:08.926199"], ["updated_at", "2015-04-06 22:14:08.932786"]]
|
2453
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2454
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2455
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:08.934902' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2456
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2457
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2458
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2459
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 22:14:08.935486"], ["updated_at", "2015-04-06 22:14:08.935486"]]
|
2460
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2461
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2462
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2463
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2464
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2465
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2466
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2467
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2468
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2469
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-06 22:14:09.027520"], ["updated_at", "2015-04-06 22:14:09.027520"]]
|
2470
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:09.029504' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2471
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2472
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2473
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2474
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:14:09.030209"], ["updated_at", "2015-04-06 22:14:09.030209"]]
|
2475
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2476
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2477
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2478
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2479
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2480
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 22:14:09.033762"], ["updated_at", "2015-04-06 22:14:09.033762"]]
|
2481
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:14:09.035170' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2482
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2483
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2484
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2485
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:14:09.035748"], ["updated_at", "2015-04-06 22:14:09.035748"]]
|
2486
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2487
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
11
2488
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12
2489
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
13
|
-
[1m[
|
14
|
-
[1m[35mSQL (0.
|
15
|
-
|
2490
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:44:40.071774"], ["updated_at", "2015-04-06 22:44:40.071774"]]
|
2491
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.095502' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2492
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2493
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2494
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2495
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:44:40.097438"], ["updated_at", "2015-04-06 22:44:40.097438"]]
|
2496
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2497
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2498
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:44:40.099936"], ["updated_at", "2015-04-06 22:44:40.099936"]]
|
2499
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2500
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2501
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.102491' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2502
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2503
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2504
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2505
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 22:44:40.103189"], ["updated_at", "2015-04-06 22:44:40.103189"]]
|
2506
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2507
|
+
Started GET "/" for 127.0.0.1 at 2015-04-07 00:44:40 +0200
|
2508
|
+
Processing by DummiesController#index as HTML
|
2509
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
|
2510
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2511
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2512
|
+
AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2513
|
+
Rendered dummies/index.html.erb within layouts/application (4.8ms)
|
2514
|
+
Completed 200 OK in 60ms (Views: 59.0ms | ActiveRecord: 0.2ms)
|
2515
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2516
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2517
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
|
2518
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2519
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2520
|
+
AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
2521
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2522
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2523
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2524
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:44:40.302146"], ["updated_at", "2015-04-06 22:44:40.302146"]]
|
2525
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.304189' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2526
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2527
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2528
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2529
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:44:40.304943"], ["updated_at", "2015-04-06 22:44:40.304943"]]
|
2530
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2531
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2532
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-06 22:44:40.306733"], ["updated_at", "2015-04-06 22:44:40.306733"]]
|
2533
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2534
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2535
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.308835' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
16
2536
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
17
2537
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
18
|
-
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "
|
19
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id",
|
20
|
-
[1m[36m (0.
|
21
|
-
[1m[
|
22
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23
|
-
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
24
|
-
[1m[36m (0.1ms)[0m [1mSELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"[0m
|
25
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-15 15:07:21.332428"], ["updated_at", "2015-04-15 15:07:21.332428"]]
|
26
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-15 15:07:21.334546' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2538
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2539
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-06 22:44:40.309519"], ["updated_at", "2015-04-06 22:44:40.309519"]]
|
2540
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2541
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
|
27
2542
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
28
2543
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
29
|
-
AND
|
30
|
-
[1m[
|
31
|
-
[1m[
|
32
|
-
[1m[
|
2544
|
+
AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2545
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2546
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2547
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2548
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2549
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-06 22:44:40.416639"], ["updated_at", "2015-04-06 22:44:40.416639"]]
|
2550
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.419140' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2551
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2552
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2553
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2554
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:44:40.420101"], ["updated_at", "2015-04-06 22:44:40.420101"]]
|
2555
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2556
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2557
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2558
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2559
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2560
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-06 22:44:40.423878"], ["updated_at", "2015-04-06 22:44:40.423878"]]
|
2561
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-06 22:44:40.425254' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2562
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2563
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2564
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2565
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-06 22:44:40.425837"], ["updated_at", "2015-04-06 22:44:40.425837"]]
|
2566
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2567
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
33
2568
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
34
2569
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
35
|
-
[1m[36mSQL (0.
|
36
|
-
[1m[35mSQL (0.
|
2570
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-07 14:03:58.816650"], ["updated_at", "2015-04-07 14:03:58.816650"]]
|
2571
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:58.840564' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
37
2572
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
38
2573
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
39
2574
|
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
40
|
-
[1m[36mSQL (0.
|
2575
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-07 14:03:58.843001"], ["updated_at", "2015-04-07 14:03:58.843001"]]
|
41
2576
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
42
2577
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
43
|
-
[1m[35mSQL (0.
|
2578
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-07 14:03:58.816650"], ["updated_at", "2015-04-07 14:03:58.845797"]]
|
44
2579
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
45
2580
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
46
|
-
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-
|
2581
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:58.848626' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
47
2582
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
48
2583
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
49
2584
|
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
50
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-
|
51
|
-
[1m[36m (0.
|
2585
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-07 14:03:58.849386"], ["updated_at", "2015-04-07 14:03:58.849386"]]
|
2586
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2587
|
+
Started GET "/" for 127.0.0.1 at 2015-04-07 16:03:58 +0200
|
2588
|
+
Processing by DummiesController#index as HTML
|
52
2589
|
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
53
2590
|
ON txtblx_textblocks.id = t_published.record_id
|
54
2591
|
AND t_published.record_type = 'Txtblx::Textblock'
|
55
2592
|
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2593
|
+
Rendered dummies/index.html.erb within layouts/application (4.9ms)
|
2594
|
+
Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms)
|
2595
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2596
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2597
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2598
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2599
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-07 14:03:58.986638"], ["updated_at", "2015-04-07 14:03:58.986638"]]
|
2600
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:58.989319' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2601
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2602
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2603
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2604
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-07 14:03:58.990770"], ["updated_at", "2015-04-07 14:03:58.990770"]]
|
2605
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2606
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2607
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2608
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2609
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2610
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-07 14:03:58.995861"], ["updated_at", "2015-04-07 14:03:58.995861"]]
|
2611
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:58.997445' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2612
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2613
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2614
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2615
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-07 14:03:58.998130"], ["updated_at", "2015-04-07 14:03:58.998130"]]
|
2616
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56
2617
|
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
57
2618
|
[1m[35m (0.1ms)[0m begin transaction
|
2619
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2620
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-07 14:03:59.051219"], ["updated_at", "2015-04-07 14:03:59.051219"]]
|
2621
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:59.053354' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2622
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2623
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2624
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2625
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-07 14:03:59.054131"], ["updated_at", "2015-04-07 14:03:59.054131"]]
|
2626
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2627
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2628
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-07 14:03:59.051219"], ["updated_at", "2015-04-07 14:03:59.056043"]]
|
2629
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2630
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2631
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-07 14:03:59.058167' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2632
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2633
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2634
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
2635
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-07 14:03:59.058869"], ["updated_at", "2015-04-07 14:03:59.058869"]]
|
2636
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2637
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2638
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2639
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2640
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
2641
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2642
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2643
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2644
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2645
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2646
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2647
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2648
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2649
|
+
[1m[35mTxtblx::Textblock Load (0.3ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2650
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2651
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2652
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2653
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2654
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2655
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2656
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 14:19:19.799075"], ["updated_at", "2015-04-09 14:19:19.799075"]]
|
2657
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 14:19:19.814796' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2658
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2659
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2660
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2661
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 14:19:19.815809"], ["updated_at", "2015-04-09 14:19:19.815809"]]
|
2662
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2663
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2664
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 14:19:19.799075"], ["updated_at", "2015-04-09 14:19:19.818111"]]
|
2665
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2666
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2667
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 14:19:19.820326' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2668
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2669
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2670
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
2671
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-09 14:19:19.820928"], ["updated_at", "2015-04-09 14:19:19.820928"]]
|
2672
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
58
2673
|
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
59
2674
|
ON txtblx_textblocks.id = t_published.record_id
|
60
2675
|
AND t_published.record_type = 'Txtblx::Textblock'
|
@@ -62,109 +2677,371 @@
|
|
62
2677
|
[1m[35m (0.1ms)[0m rollback transaction
|
63
2678
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
64
2679
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
65
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-
|
66
|
-
[1m[35mSQL (0.
|
2680
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 14:19:19.827632"], ["updated_at", "2015-04-09 14:19:19.827632"]]
|
2681
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 14:19:19.830000' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
67
2682
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
68
2683
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
69
2684
|
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
70
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-
|
71
|
-
[1m[35m (0.
|
2685
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 14:19:19.830719"], ["updated_at", "2015-04-09 14:19:19.830719"]]
|
2686
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
72
2687
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
73
|
-
[1m[35mSQL (0.
|
74
|
-
[1m[36m (0.
|
2688
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 14:19:19.827632"], ["updated_at", "2015-04-09 14:19:19.832566"]]
|
2689
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
75
2690
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
76
|
-
[1m[36mSQL (0.
|
2691
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 14:19:19.834603' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
77
2692
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
78
2693
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
79
2694
|
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
80
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-
|
81
|
-
[1m[36m (0.
|
82
|
-
Started GET "/" for 127.0.0.1 at 2015-04-
|
2695
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-09 14:19:19.835201"], ["updated_at", "2015-04-09 14:19:19.835201"]]
|
2696
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2697
|
+
Started GET "/" for 127.0.0.1 at 2015-04-09 16:19:19 +0200
|
83
2698
|
Processing by DummiesController#index as HTML
|
84
2699
|
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
85
2700
|
ON txtblx_textblocks.id = t_published.record_id
|
86
2701
|
AND t_published.record_type = 'Txtblx::Textblock'
|
87
2702
|
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
88
|
-
Rendered dummies/index.html.erb within layouts/application (
|
89
|
-
Completed 200 OK in
|
90
|
-
[1m[36m (0.
|
91
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
92
|
-
[1m[35mTxtblx::Textblock Load (0.3ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
93
|
-
ON txtblx_textblocks.id = t_published.record_id
|
94
|
-
AND t_published.record_type = 'Txtblx::Textblock'
|
95
|
-
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
96
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2703
|
+
Rendered dummies/index.html.erb within layouts/application (2.8ms)
|
2704
|
+
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms)
|
2705
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
97
2706
|
[1m[35m (0.1ms)[0m begin transaction
|
98
2707
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
99
|
-
[1m[
|
100
|
-
[1m[36mSQL (0.2ms)[0m [
|
2708
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2709
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-09 14:19:19.969315"], ["updated_at", "2015-04-09 14:19:19.969315"]]
|
2710
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 14:19:19.971289' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2711
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2712
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2713
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2714
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 14:19:19.971990"], ["updated_at", "2015-04-09 14:19:19.971990"]]
|
2715
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2716
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2717
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2718
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2719
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2720
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-09 14:19:19.975534"], ["updated_at", "2015-04-09 14:19:19.975534"]]
|
2721
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 14:19:19.976940' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2722
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2723
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2724
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2725
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 14:19:19.977601"], ["updated_at", "2015-04-09 14:19:19.977601"]]
|
2726
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2727
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2728
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2729
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2730
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"[0m
|
2731
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-09 15:07:35.628075"], ["updated_at", "2015-04-09 15:07:35.628075"]]
|
2732
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:07:35.664845' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
101
2733
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
102
2734
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
103
2735
|
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
104
|
-
[1m[35mSQL (0.
|
2736
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 15:07:35.671162"], ["updated_at", "2015-04-09 15:07:35.671162"]]
|
105
2737
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
106
|
-
[1m[35m (0.
|
107
|
-
[1m[
|
2738
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2739
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2740
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2741
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"[0m
|
2742
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-09 15:07:35.676439"], ["updated_at", "2015-04-09 15:07:35.676439"]]
|
2743
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:07:35.678490' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2744
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2745
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2746
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2747
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 15:07:35.679240"], ["updated_at", "2015-04-09 15:07:35.679240"]]
|
2748
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2749
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
2750
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2751
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2752
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 15:07:35.690099"], ["updated_at", "2015-04-09 15:07:35.690099"]]
|
2753
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:07:35.692615' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2754
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2755
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2756
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2757
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 15:07:35.693538"], ["updated_at", "2015-04-09 15:07:35.693538"]]
|
108
2758
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2759
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2760
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 15:07:35.695740"], ["updated_at", "2015-04-09 15:07:35.695740"]]
|
2761
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2762
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2763
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:07:35.698207' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2764
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2765
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2766
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2767
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-09 15:07:35.698910"], ["updated_at", "2015-04-09 15:07:35.698910"]]
|
2768
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2769
|
+
Started GET "/" for 127.0.0.1 at 2015-04-09 17:07:35 +0200
|
2770
|
+
Processing by DummiesController#index as HTML
|
2771
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
|
2772
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2773
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2774
|
+
AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2775
|
+
Rendered dummies/index.html.erb within layouts/application (7.8ms)
|
2776
|
+
Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.2ms)
|
2777
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2778
|
+
[1m[35m (0.1ms)[0m begin transaction
|
109
2779
|
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110
|
-
[1m[35mSQL (0.2ms)[0m
|
2780
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 15:07:35.764400"], ["updated_at", "2015-04-09 15:07:35.764400"]]
|
2781
|
+
[1m[36mSQL (1.9ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:07:35.766927' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2782
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2783
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2784
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2785
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 15:07:35.769601"], ["updated_at", "2015-04-09 15:07:35.769601"]]
|
2786
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2787
|
+
[1m[35m (0.9ms)[0m SAVEPOINT active_record_1
|
2788
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 15:07:35.829267"], ["updated_at", "2015-04-09 15:07:35.829267"]]
|
2789
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2790
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2791
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:07:35.833298' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
111
2792
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
112
2793
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
113
2794
|
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
114
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-
|
2795
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-09 15:07:35.834269"], ["updated_at", "2015-04-09 15:07:35.834269"]]
|
115
2796
|
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
116
|
-
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
|
117
|
-
ON txtblx_textblocks.id =
|
118
|
-
AND
|
119
|
-
AND
|
2797
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
|
2798
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2799
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2800
|
+
AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
2801
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
2802
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2803
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
|
2804
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2805
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2806
|
+
AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2807
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2808
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2809
|
+
[1m[35mTxtblx::Textblock Load (0.3ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
|
2810
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2811
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2812
|
+
AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2813
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2814
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2815
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2816
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 15:08:09.099166"], ["updated_at", "2015-04-09 15:08:09.099166"]]
|
2817
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:08:09.113909' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2818
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2819
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2820
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2821
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 15:08:09.115032"], ["updated_at", "2015-04-09 15:08:09.115032"]]
|
2822
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2823
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2824
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 15:08:09.117639"], ["updated_at", "2015-04-09 15:08:09.117639"]]
|
2825
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2826
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2827
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:08:09.119956' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2828
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2829
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2830
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
2831
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-09 15:08:09.120590"], ["updated_at", "2015-04-09 15:08:09.120590"]]
|
2832
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2833
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
|
2834
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2835
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2836
|
+
AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
120
2837
|
[1m[35m (0.2ms)[0m rollback transaction
|
121
2838
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
122
2839
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2840
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 15:08:09.127465"], ["updated_at", "2015-04-09 15:08:09.127465"]]
|
2841
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:08:09.129521' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2842
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2843
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2844
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2845
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 15:08:09.130359"], ["updated_at", "2015-04-09 15:08:09.130359"]]
|
2846
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2847
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2848
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-09 15:08:09.132289"], ["updated_at", "2015-04-09 15:08:09.132289"]]
|
2849
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2850
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2851
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:08:09.134279' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2852
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2853
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2854
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2855
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-09 15:08:09.134848"], ["updated_at", "2015-04-09 15:08:09.134848"]]
|
2856
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2857
|
+
Started GET "/" for 127.0.0.1 at 2015-04-09 17:08:09 +0200
|
2858
|
+
Processing by DummiesController#index as HTML
|
2859
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags
|
2860
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2861
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2862
|
+
AND snaps_tags.tag = 'published' WHERE (snaps_tags.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2863
|
+
Rendered dummies/index.html.erb within layouts/application (2.4ms)
|
2864
|
+
Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.1ms)
|
2865
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2866
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2867
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2868
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2869
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-09 15:08:09.250952"], ["updated_at", "2015-04-09 15:08:09.250952"]]
|
2870
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:08:09.252850' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2871
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2872
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2873
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2874
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 15:08:09.253726"], ["updated_at", "2015-04-09 15:08:09.253726"]]
|
2875
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2876
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2877
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2878
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2879
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
2880
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-09 15:08:09.257641"], ["updated_at", "2015-04-09 15:08:09.257641"]]
|
2881
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-09 15:08:09.259196' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2882
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2883
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2884
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2885
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-09 15:08:09.259787"], ["updated_at", "2015-04-09 15:08:09.259787"]]
|
2886
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2887
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2888
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2889
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
123
2890
|
[1m[36m (0.2ms)[0m [1mSELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"[0m
|
124
|
-
[1m[35mSQL (0.
|
125
|
-
[1m[36mSQL (0.
|
2891
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-10 20:17:22.499850"], ["updated_at", "2015-04-10 20:17:22.499850"]]
|
2892
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:17:22.528588' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
126
2893
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
127
2894
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
128
2895
|
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
129
|
-
[1m[35mSQL (0.
|
2896
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-10 20:17:22.531462"], ["updated_at", "2015-04-10 20:17:22.531462"]]
|
130
2897
|
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
131
2898
|
[1m[35m (0.1ms)[0m rollback transaction
|
132
2899
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
133
2900
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
134
|
-
[1m[36m (0.
|
135
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-
|
136
|
-
[1m[36mSQL (0.
|
2901
|
+
[1m[36m (0.2ms)[0m [1mSELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"[0m
|
2902
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-10 20:17:22.538061"], ["updated_at", "2015-04-10 20:17:22.538061"]]
|
2903
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:17:22.540520' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
137
2904
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
138
2905
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
139
2906
|
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
140
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-
|
141
|
-
[1m[36m (0.
|
2907
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-10 20:17:22.541334"], ["updated_at", "2015-04-10 20:17:22.541334"]]
|
2908
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
142
2909
|
[1m[35m (0.1ms)[0m rollback transaction
|
143
2910
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
144
2911
|
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
145
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-
|
146
|
-
[1m[35mSQL (0.
|
2912
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-10 20:17:22.546693"], ["updated_at", "2015-04-10 20:17:22.546693"]]
|
2913
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:17:22.548826' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
147
2914
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
148
2915
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
149
2916
|
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
150
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-
|
151
|
-
[1m[35m (0.
|
2917
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-10 20:17:22.549592"], ["updated_at", "2015-04-10 20:17:22.549592"]]
|
2918
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
152
2919
|
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
153
|
-
[1m[35mSQL (0.
|
154
|
-
[1m[36m (0.
|
2920
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-10 20:17:22.546693"], ["updated_at", "2015-04-10 20:17:22.551393"]]
|
2921
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
155
2922
|
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
156
|
-
[1m[36mSQL (0.
|
2923
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:17:22.553325' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
157
2924
|
ON txtblx_textblocks.id = snaps_tags.record_id
|
158
2925
|
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
159
2926
|
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
160
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-
|
161
|
-
[1m[36m (0.
|
162
|
-
Started GET "/" for 127.0.0.1 at 2015-04-
|
2927
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-10 20:17:22.553924"], ["updated_at", "2015-04-10 20:17:22.553924"]]
|
2928
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2929
|
+
Started GET "/" for 127.0.0.1 at 2015-04-10 22:17:22 +0200
|
163
2930
|
Processing by DummiesController#index as HTML
|
2931
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2932
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2933
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2934
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2935
|
+
Rendered dummies/index.html.erb within layouts/application (46.2ms)
|
2936
|
+
Completed 200 OK in 56ms (Views: 55.7ms | ActiveRecord: 0.2ms)
|
2937
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2938
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2939
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2940
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-10 20:17:22.630741"], ["updated_at", "2015-04-10 20:17:22.630741"]]
|
2941
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:17:22.634823' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2942
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2943
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2944
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "draft"]]
|
2945
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-10 20:17:22.636520"], ["updated_at", "2015-04-10 20:17:22.636520"]]
|
2946
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2947
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2948
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-10 20:17:22.630741"], ["updated_at", "2015-04-10 20:17:22.638784"]]
|
2949
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2950
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2951
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:17:22.640724' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2952
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2953
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2954
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "published"]]
|
2955
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-10 20:17:22.641347"], ["updated_at", "2015-04-10 20:17:22.641347"]]
|
2956
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2957
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2958
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2959
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2960
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
2961
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2962
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
164
2963
|
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
165
2964
|
ON txtblx_textblocks.id = t_published.record_id
|
166
2965
|
AND t_published.record_type = 'Txtblx::Textblock'
|
167
2966
|
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
168
|
-
|
169
|
-
|
2967
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2968
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2969
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2970
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-10 20:19:31.761642"], ["updated_at", "2015-04-10 20:19:31.761642"]]
|
2971
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:19:31.783040' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2972
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2973
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2974
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
2975
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-10 20:19:31.784985"], ["updated_at", "2015-04-10 20:19:31.784985"]]
|
2976
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2977
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2978
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-10 20:19:31.761642"], ["updated_at", "2015-04-10 20:19:31.787233"]]
|
2979
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2980
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2981
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:19:31.789495' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
2982
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
2983
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
2984
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
2985
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-10 20:19:31.790092"], ["updated_at", "2015-04-10 20:19:31.790092"]]
|
2986
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2987
|
+
Started GET "/" for 127.0.0.1 at 2015-04-10 22:19:31 +0200
|
2988
|
+
Processing by DummiesController#index as HTML
|
2989
|
+
[1m[35mTxtblx::Textblock Load (0.2ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2990
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2991
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
2992
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
2993
|
+
Rendered dummies/index.html.erb within layouts/application (4.5ms)
|
2994
|
+
Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.2ms)
|
170
2995
|
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2996
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2997
|
+
[1m[36mTxtblx::Textblock Load (0.1ms)[0m [1mSELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
2998
|
+
ON txtblx_textblocks.id = t_published.record_id
|
2999
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
3000
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1[0m [["key", "homepage.welcome"]]
|
3001
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3002
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3003
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3004
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-10 20:19:31.975131"], ["updated_at", "2015-04-10 20:19:31.975131"]]
|
3005
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:19:31.977195' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
3006
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
3007
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
3008
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
3009
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-10 20:19:31.977948"], ["updated_at", "2015-04-10 20:19:31.977948"]]
|
3010
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3011
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3012
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "txtblx_textblocks" ("perma_id", "key", "description", "text", "text_html", "path", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["perma_id", 1], ["key", "homepage.welcome"], ["description", ""], ["text", ""], ["text_html", "Welcome to Dummy App"], ["path", "MyString"], ["created_at", "2015-04-10 20:19:31.975131"], ["updated_at", "2015-04-10 20:19:31.979691"]]
|
3013
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3014
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3015
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:19:31.981619' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
3016
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
3017
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
3018
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL)[0m [["tag", "published"]]
|
3019
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["record_id", 2], ["record_type", "Txtblx::Textblock"], ["tag", "published"], ["created_at", "2015-04-10 20:19:31.982198"], ["updated_at", "2015-04-10 20:19:31.982198"]]
|
3020
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3021
|
+
[1m[35mTxtblx::Textblock Load (0.1ms)[0m SELECT "txtblx_textblocks".* FROM "txtblx_textblocks" INNER JOIN snaps_tags t_published
|
3022
|
+
ON txtblx_textblocks.id = t_published.record_id
|
3023
|
+
AND t_published.record_type = 'Txtblx::Textblock'
|
3024
|
+
AND t_published.tag = 'published' WHERE (t_published.superseded_at IS NULL) AND "txtblx_textblocks"."key" = ? LIMIT 1 [["key", "homepage.welcome"]]
|
3025
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3026
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3027
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3028
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
3029
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text inlcuding http://example.com"], ["text_html", "<p>some text inlcuding <a href=\"http://example.com\" target=\"_blank\" rel=\"nofollow\">http://example.com</a></p>"], ["perma_id", 1], ["created_at", "2015-04-10 20:19:32.074731"], ["updated_at", "2015-04-10 20:19:32.074731"]]
|
3030
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:19:32.076666' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
3031
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
3032
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
3033
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
3034
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-10 20:19:32.077415"], ["updated_at", "2015-04-10 20:19:32.077415"]]
|
3035
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3036
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3037
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3038
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3039
|
+
[1m[35m (0.1ms)[0m SELECT MAX("txtblx_textblocks"."perma_id") FROM "txtblx_textblocks"
|
3040
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "txtblx_textblocks" ("key", "text", "text_html", "perma_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["key", "some key"], ["text", "some text"], ["text_html", "<p>some text</p>"], ["perma_id", 1], ["created_at", "2015-04-10 20:19:32.080865"], ["updated_at", "2015-04-10 20:19:32.080865"]]
|
3041
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "snaps_tags" SET "superseded_at" = '2015-04-10 20:19:32.082328' WHERE "snaps_tags"."id" IN (SELECT "snaps_tags"."id" FROM "snaps_tags" INNER JOIN txtblx_textblocks
|
3042
|
+
ON txtblx_textblocks.id = snaps_tags.record_id
|
3043
|
+
AND snaps_tags.record_type = 'Txtblx::Textblock'
|
3044
|
+
AND perma_id = 1 WHERE "snaps_tags"."tag" = ? AND "snaps_tags"."superseded_at" IS NULL) [["tag", "draft"]]
|
3045
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "snaps_tags" ("record_id", "record_type", "tag", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["record_id", 1], ["record_type", "Txtblx::Textblock"], ["tag", "draft"], ["created_at", "2015-04-10 20:19:32.082883"], ["updated_at", "2015-04-10 20:19:32.082883"]]
|
3046
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3047
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|