pulitzer 0.4.11 → 0.4.12
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/interactions/pulitzer/update_content_element.rb +1 -0
- data/lib/pulitzer/version.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +1968 -0
- data/spec/dummy/public/uploads/tmp/1467740087-79204-8644/cms_sam_and_snow.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1467740087-79204-8644/sam_and_snow.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1467740087-79204-8644/thumb_sam_and_snow.jpg +0 -0
- metadata +16 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0c1573e13bef24dd60906a293039368a6ebb93d6
|
4
|
+
data.tar.gz: 0db8a0db0b520a979f249f9a260dff820bc0b214
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f03dd3546f89e47a164a2b4dde17bd4992713b264ba4ea15b882368cd2c8c71790de988c0b0f28c0978b90d664fb80358c7949f62abc442245a56105b8b3b28
|
7
|
+
data.tar.gz: 206b545ac509a25dcbf47c277e66fff981f7c840e315f228632618c9aec5d6bef185b0ddd33734f1c9dec005b7de8be4d1ac4bea0445dc71cb3782ab04d2aba3
|
@@ -7,6 +7,7 @@ class Pulitzer::UpdateContentElement
|
|
7
7
|
def call
|
8
8
|
text_editor = Pulitzer.text_editor_toolbars.detect { |toolbar| toolbar[:name] == content_element.text_editor }
|
9
9
|
if 'Kramdown' == text_editor[:kind]
|
10
|
+
params[:markdown] = params[:body]
|
10
11
|
params[:body] = Kramdown::Document.new(params[:body]).to_html
|
11
12
|
end
|
12
13
|
@content_element.update params
|
data/lib/pulitzer/version.rb
CHANGED
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/spec/dummy/log/test.log
CHANGED
@@ -54950,3 +54950,1971 @@ Pulitzer::CloneVersion !!!
|
|
54950
54950
|
[1m[36mPulitzer::PostTag Load (0.1ms)[0m [1mSELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ?[0m [["version_id", 2], ["label_type", "Pulitzer::Tag"]]
|
54951
54951
|
[1m[35mPulitzer::Tag Load (0.1ms)[0m SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
|
54952
54952
|
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
54953
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
54954
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "pulitzer_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
54955
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "text_editor" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "sort_order" integer, "kind" integer DEFAULT 0, "partial_id" integer)
|
54956
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "pulitzer_free_form_section_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar) [0m
|
54957
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "pulitzer_free_form_sections" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "free_form_section_type_id" integer, "name" varchar)
|
54958
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "pulitzer_layouts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar) [0m
|
54959
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "pulitzer_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "free_form_section_id" integer, "sort_order" integer, "layout_id" integer, "label" varchar)
|
54960
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
54961
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "pulitzer_post_type_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "content_element_type_id" integer, "label" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "text_editor" varchar)
|
54962
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean, "kind" integer DEFAULT 0) [0m
|
54963
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "pulitzer_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "post_type_id" integer, "status" varchar DEFAULT 'unpublished', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "slug" varchar)
|
54964
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
54965
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_pulitzer_posts_on_slug" ON "pulitzer_posts" ("slug")
|
54966
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "pulitzer_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "parent_id" integer, "hierarchical" boolean DEFAULT 'f' NOT NULL) [0m
|
54967
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_pulitzer_tags_on_hierarchical" ON "pulitzer_tags" ("hierarchical")
|
54968
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
54969
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
54970
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
54971
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160609214139')
|
54972
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
54973
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
54974
|
+
Migrating to CreatePulitzerPostTypes (20150618224344)
|
54975
|
+
[1m[35m (0.1ms)[0m begin transaction
|
54976
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
54977
|
+
SQLite3::SQLException: table "pulitzer_post_types" already exists: CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
54978
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
54979
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
54980
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
54981
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
54982
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
54983
|
+
Migrating to CreatePulitzerPostTypes (20150618224344)
|
54984
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
54985
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
54986
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150618224344"]]
|
54987
|
+
[1m[35m (0.8ms)[0m commit transaction
|
54988
|
+
Migrating to CreatePulitzerContentElementTypes (20150618225402)
|
54989
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
54990
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "pulitzer_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
54991
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150618225402"]]
|
54992
|
+
[1m[35m (0.7ms)[0m commit transaction
|
54993
|
+
Migrating to CreatePulitzerPosts (20150619204615)
|
54994
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
54995
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "pulitzer_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "post_type_id" integer, "status" varchar DEFAULT 'unpublished', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
54996
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150619204615"]]
|
54997
|
+
[1m[35m (0.8ms)[0m commit transaction
|
54998
|
+
Migrating to CreatePulitzerContentElements (20150619204708)
|
54999
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55000
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "post_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
55001
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150619204708"]]
|
55002
|
+
[1m[35m (0.8ms)[0m commit transaction
|
55003
|
+
Migrating to CreatePulitzerTags (20150619213436)
|
55004
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55005
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "pulitzer_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
55006
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150619213436"]]
|
55007
|
+
[1m[35m (0.7ms)[0m commit transaction
|
55008
|
+
Migrating to CreatePulitzerPostTags (20150619213457)
|
55009
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55010
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
55011
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150619213457"]]
|
55012
|
+
[1m[35m (0.7ms)[0m commit transaction
|
55013
|
+
Migrating to CreatePulitzerPostTypeContentElementTypes (20150619215914)
|
55014
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55015
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "pulitzer_post_type_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "content_element_type_id" integer, "label" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
55016
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150619215914"]]
|
55017
|
+
[1m[35m (0.8ms)[0m commit transaction
|
55018
|
+
Migrating to AddPluralAndTemplateToPulitzerPostTypes (20150629195832)
|
55019
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55020
|
+
[1m[35m (2.3ms)[0m ALTER TABLE "pulitzer_post_types" ADD "plural" boolean
|
55021
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "pulitzer_post_types" ADD "template" boolean[0m
|
55022
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150629195832"]]
|
55023
|
+
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
|
55024
|
+
Migrating to AddPulitzerContentElementTypes (20150702150819)
|
55025
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55026
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text' LIMIT 1[0m
|
55027
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text"], ["created_at", "2016-07-05 17:34:38.115129"], ["updated_at", "2016-07-05 17:34:38.115129"]]
|
55028
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Image' LIMIT 1[0m
|
55029
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Image"], ["created_at", "2016-07-05 17:34:38.117322"], ["updated_at", "2016-07-05 17:34:38.117322"]]
|
55030
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Video' LIMIT 1[0m
|
55031
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Video"], ["created_at", "2016-07-05 17:34:38.118819"], ["updated_at", "2016-07-05 17:34:38.118819"]]
|
55032
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150702150819"]]
|
55033
|
+
[1m[35m (0.8ms)[0m commit transaction
|
55034
|
+
Migrating to AddSlugToPulitzerPosts (20150724150230)
|
55035
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55036
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "pulitzer_posts" ADD "slug" varchar
|
55037
|
+
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_pulitzer_posts_on_slug" ON "pulitzer_posts" ("slug")[0m
|
55038
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150724150230"]]
|
55039
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
55040
|
+
Migrating to ChangeLabelTypeFromPulitzerPostTags (20150902212741)
|
55041
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55042
|
+
[1m[36m (0.5ms)[0m [1mCREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
55043
|
+
[1m[35m (0.0ms)[0m SELECT * FROM "pulitzer_post_tags"
|
55044
|
+
[1m[36m (0.4ms)[0m [1mDROP TABLE "pulitzer_post_tags"[0m
|
55045
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
55046
|
+
[1m[36m (0.0ms)[0m [1mSELECT * FROM "apulitzer_post_tags"[0m
|
55047
|
+
[1m[35m (3.1ms)[0m DROP TABLE "apulitzer_post_tags"
|
55048
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150902212741"]]
|
55049
|
+
[1m[35m (1.4ms)[0m commit transaction
|
55050
|
+
Migrating to AddTextEditorToPulitzerPostTypeContentElementTypes (20151026180630)
|
55051
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55052
|
+
[1m[35m (0.5ms)[0m ALTER TABLE "pulitzer_post_type_content_element_types" ADD "text_editor" varchar
|
55053
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_post_type_content_element_types" SET "text_editor" = 'None' WHERE "pulitzer_post_type_content_element_types"."id" IN (SELECT "pulitzer_post_type_content_element_types"."id" FROM "pulitzer_post_type_content_element_types" ORDER BY "pulitzer_post_type_content_element_types"."id" ASC)[0m
|
55054
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151026180630"]]
|
55055
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
55056
|
+
Migrating to CreatePulitzerVersions (20151029194354)
|
55057
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55058
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "pulitzer_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer DEFAULT 0, "post_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
55059
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151029194354"]]
|
55060
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
55061
|
+
Migrating to ChangePostElementsToVersions (20151029220558)
|
55062
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55063
|
+
[1m[36m (0.6ms)[0m [1mCREATE TEMPORARY TABLE "apulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
55064
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "pulitzer_content_elements"
|
55065
|
+
[1m[36m (0.5ms)[0m [1mDROP TABLE "pulitzer_content_elements"[0m
|
55066
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
55067
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "apulitzer_content_elements"[0m
|
55068
|
+
[1m[35m (0.1ms)[0m DROP TABLE "apulitzer_content_elements"
|
55069
|
+
[1m[36m (0.2ms)[0m [1mCREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
55070
|
+
[1m[35m (0.0ms)[0m SELECT * FROM "pulitzer_post_tags"
|
55071
|
+
[1m[36m (0.4ms)[0m [1mDROP TABLE "pulitzer_post_tags"[0m
|
55072
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
55073
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "apulitzer_post_tags"[0m
|
55074
|
+
[1m[35m (0.1ms)[0m DROP TABLE "apulitzer_post_tags"
|
55075
|
+
[1m[36mPulitzer::Post Load (0.1ms)[0m [1mSELECT "pulitzer_posts".* FROM "pulitzer_posts" ORDER BY "pulitzer_posts"."id" ASC LIMIT 1000[0m
|
55076
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151029220558"]]
|
55077
|
+
[1m[36m (5.8ms)[0m [1mcommit transaction[0m
|
55078
|
+
Migrating to AddPostTypeContentElementAttributesToContentElements (20151113183344)
|
55079
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55080
|
+
[1m[36m (0.6ms)[0m [1mALTER TABLE "pulitzer_content_elements" ADD "text_editor" varchar[0m
|
55081
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "pulitzer_content_elements" ADD "height" integer DEFAULT 100
|
55082
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "pulitzer_content_elements" ADD "width" integer DEFAULT 100[0m
|
55083
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "pulitzer_content_elements" ADD "sort_order" integer
|
55084
|
+
Scoped order and limit are ignored, it's forced to be batch order and batch size
|
55085
|
+
[1m[36mPulitzer::ContentElement Load (0.1ms)[0m [1mSELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1000[0m
|
55086
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151113183344"]]
|
55087
|
+
[1m[36m (2.5ms)[0m [1mcommit transaction[0m
|
55088
|
+
Migrating to ChangeTemplateToPulitzerPostTypes (20151116162508)
|
55089
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55090
|
+
[1m[36m (0.2ms)[0m [1mCREATE TEMPORARY TABLE "apulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean, "template" boolean) [0m
|
55091
|
+
[1m[35m (0.0ms)[0m SELECT * FROM "pulitzer_post_types"
|
55092
|
+
[1m[36m (0.3ms)[0m [1mDROP TABLE "pulitzer_post_types"[0m
|
55093
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean)
|
55094
|
+
[1m[36m (0.0ms)[0m [1mSELECT * FROM "apulitzer_post_types"[0m
|
55095
|
+
[1m[35m (0.1ms)[0m DROP TABLE "apulitzer_post_types"
|
55096
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "pulitzer_post_types" ADD "kind" integer DEFAULT 0[0m
|
55097
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151116162508"]]
|
55098
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
55099
|
+
Migrating to AddKindToPulitzerContentElements (20151118031237)
|
55100
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55101
|
+
[1m[36m (0.8ms)[0m [1mALTER TABLE "pulitzer_content_elements" ADD "kind" integer DEFAULT 0[0m
|
55102
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151118031237"]]
|
55103
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
55104
|
+
Migrating to AddErrorsToVersion (20160122204201)
|
55105
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55106
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "pulitzer_versions" ADD "cloning_errors" jsonb[0m
|
55107
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160122204201"]]
|
55108
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
55109
|
+
Migrating to CreatePartials (20160511192041)
|
55110
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55111
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "pulitzer_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "free_form_section_id" integer, "sort_order" integer) [0m
|
55112
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160511192041"]]
|
55113
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
55114
|
+
Migrating to AddParentIdToPulitzerTag (20160511201527)
|
55115
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55116
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "pulitzer_tags" ADD "parent_id" integer[0m
|
55117
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "pulitzer_tags" ADD "hierarchical" boolean DEFAULT 'f' NOT NULL
|
55118
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_pulitzer_tags_on_hierarchical" ON "pulitzer_tags" ("hierarchical")[0m
|
55119
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160511201527"]]
|
55120
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
55121
|
+
Migrating to AddPartialToContentElement (20160512214545)
|
55122
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55123
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "pulitzer_content_elements" ADD "partial_id" integer[0m
|
55124
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512214545"]]
|
55125
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
55126
|
+
Migrating to CreateFreeFormSectionType (20160513153209)
|
55127
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55128
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "pulitzer_free_form_section_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar) [0m
|
55129
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160513153209"]]
|
55130
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
55131
|
+
Migrating to CreateFreeFormSection (20160513153214)
|
55132
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55133
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "pulitzer_free_form_sections" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "free_form_section_type_id" integer, "name" varchar) [0m
|
55134
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160513153214"]]
|
55135
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
55136
|
+
Migrating to FixPostTypeKinds (20160516150237)
|
55137
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55138
|
+
[1m[36mPulitzer::PostType Load (0.1ms)[0m [1mSELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" IN (1, 2)[0m
|
55139
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516150237"]]
|
55140
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
55141
|
+
Migrating to CreateLayouts (20160517181706)
|
55142
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55143
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "pulitzer_layouts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar) [0m
|
55144
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160517181706"]]
|
55145
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
55146
|
+
Migrating to AddLayoutToPartial (20160517182500)
|
55147
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55148
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "pulitzer_partials" ADD "layout_id" integer[0m
|
55149
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160517182500"]]
|
55150
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
55151
|
+
Migrating to AddLabelToPartial (20160519181030)
|
55152
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55153
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "pulitzer_partials" ADD "label" varchar[0m
|
55154
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160519181030"]]
|
55155
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
55156
|
+
Migrating to RemoveTitleFromContentElements (20160609214139)
|
55157
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55158
|
+
[1m[36m (0.3ms)[0m [1mCREATE TEMPORARY TABLE "apulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "text_editor" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "sort_order" integer, "kind" integer DEFAULT 0, "partial_id" integer) [0m
|
55159
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "pulitzer_content_elements"
|
55160
|
+
[1m[36m (0.3ms)[0m [1mDROP TABLE "pulitzer_content_elements"[0m
|
55161
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "text_editor" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "sort_order" integer, "kind" integer DEFAULT 0, "partial_id" integer)
|
55162
|
+
[1m[36m (0.0ms)[0m [1mSELECT * FROM "apulitzer_content_elements"[0m
|
55163
|
+
[1m[35m (0.1ms)[0m DROP TABLE "apulitzer_content_elements"
|
55164
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160609214139"]]
|
55165
|
+
[1m[35m (0.9ms)[0m commit transaction
|
55166
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
55167
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
55168
|
+
FROM sqlite_master
|
55169
|
+
WHERE name='index_pulitzer_posts_on_slug' AND type='index'
|
55170
|
+
UNION ALL
|
55171
|
+
SELECT sql
|
55172
|
+
FROM sqlite_temp_master
|
55173
|
+
WHERE name='index_pulitzer_posts_on_slug' AND type='index'
|
55174
|
+
|
55175
|
+
[1m[36m (0.3ms)[0m [1m SELECT sql
|
55176
|
+
FROM sqlite_master
|
55177
|
+
WHERE name='index_pulitzer_tags_on_hierarchical' AND type='index'
|
55178
|
+
UNION ALL
|
55179
|
+
SELECT sql
|
55180
|
+
FROM sqlite_temp_master
|
55181
|
+
WHERE name='index_pulitzer_tags_on_hierarchical' AND type='index'
|
55182
|
+
[0m
|
55183
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
55184
|
+
[1m[35m (2.0ms)[0m DELETE FROM "pulitzer_content_element_types";
|
55185
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
55186
|
+
[1m[35m (0.8ms)[0m DELETE FROM sqlite_sequence where name = 'pulitzer_content_element_types';
|
55187
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "pulitzer_posts";[0m
|
55188
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
55189
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'pulitzer_posts';[0m
|
55190
|
+
[1m[35m (0.8ms)[0m DELETE FROM "pulitzer_tags";
|
55191
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
55192
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'pulitzer_tags';
|
55193
|
+
[1m[36m (0.8ms)[0m [1mDELETE FROM "pulitzer_post_type_content_element_types";[0m
|
55194
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
55195
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'pulitzer_post_type_content_element_types';[0m
|
55196
|
+
[1m[35m (0.8ms)[0m DELETE FROM "pulitzer_versions";
|
55197
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
55198
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'pulitzer_versions';
|
55199
|
+
[1m[36m (1.0ms)[0m [1mDELETE FROM "pulitzer_post_tags";[0m
|
55200
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
55201
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'pulitzer_post_tags';[0m
|
55202
|
+
[1m[35m (0.7ms)[0m DELETE FROM "pulitzer_post_types";
|
55203
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
55204
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'pulitzer_post_types';
|
55205
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "pulitzer_partials";[0m
|
55206
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
55207
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'pulitzer_partials';[0m
|
55208
|
+
[1m[35m (0.7ms)[0m DELETE FROM "pulitzer_free_form_section_types";
|
55209
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
55210
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'pulitzer_free_form_section_types';
|
55211
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "pulitzer_free_form_sections";[0m
|
55212
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
55213
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'pulitzer_free_form_sections';[0m
|
55214
|
+
[1m[35m (0.7ms)[0m DELETE FROM "pulitzer_layouts";
|
55215
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
55216
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'pulitzer_layouts';
|
55217
|
+
[1m[36m (0.7ms)[0m [1mDELETE FROM "pulitzer_content_elements";[0m
|
55218
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
55219
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'pulitzer_content_elements';[0m
|
55220
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55221
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55222
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55223
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55224
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "free as a bird"], ["plural", "t"], ["created_at", "2016-07-05 17:34:46.039212"], ["updated_at", "2016-07-05 17:34:46.039212"]]
|
55225
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55226
|
+
Processing by Pulitzer::FreeFormSectionTypesController#new as HTML
|
55227
|
+
Parameters: {"post_type_id"=>"1"}
|
55228
|
+
[1m[35mPulitzer::PostType Load (0.1ms)[0m SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
|
55229
|
+
[1m[36mPulitzer::PostType Load (0.1ms)[0m [1mSELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55230
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/free_form_section_types/_form_fields.html.erb (7.4ms)
|
55231
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/free_form_section_types/_new.html.erb (26.4ms)
|
55232
|
+
Completed 200 OK in 61ms (Views: 37.6ms | ActiveRecord: 0.4ms)
|
55233
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
55234
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55235
|
+
[1m[35m (0.0ms)[0m commit transaction
|
55236
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55237
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55238
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "free as a bird"], ["plural", "t"], ["created_at", "2016-07-05 17:34:46.116160"], ["updated_at", "2016-07-05 17:34:46.116160"]]
|
55239
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55240
|
+
Processing by Pulitzer::FreeFormSectionTypesController#create as HTML
|
55241
|
+
Parameters: {"free_form_section_type"=>{"post_type_id"=>"1", "name"=>"test sidebar"}}
|
55242
|
+
[1m[36mPulitzer::PostType Load (0.1ms)[0m [1mSELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55243
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55244
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_free_form_section_types" ("post_type_id", "name") VALUES (?, ?)[0m [["post_type_id", 1], ["name", "test sidebar"]]
|
55245
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55246
|
+
[1m[36mPulitzer::PostType Load (0.0ms)[0m [1mSELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55247
|
+
[1m[35mPulitzer::Post Load (0.1ms)[0m SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? [["post_type_id", 1]]
|
55248
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/free_form_section_types/_show.html.erb (5.3ms)
|
55249
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/free_form_section_types/_show_wrapper.html.erb (7.2ms)
|
55250
|
+
Completed 200 OK in 15ms (Views: 8.9ms | ActiveRecord: 0.8ms)
|
55251
|
+
[1m[36mPulitzer::FreeFormSectionType Load (0.1ms)[0m [1mSELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" ORDER BY "pulitzer_free_form_section_types"."id" DESC LIMIT 1[0m
|
55252
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
55253
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55254
|
+
[1m[35m (0.0ms)[0m commit transaction
|
55255
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55256
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55257
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "free as a bird"], ["plural", "t"], ["created_at", "2016-07-05 17:34:46.139393"], ["updated_at", "2016-07-05 17:34:46.139393"]]
|
55258
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55259
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55260
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?) [["name", "main content"], ["post_type_id", 1]]
|
55261
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55262
|
+
Processing by Pulitzer::FreeFormSectionTypesController#edit as HTML
|
55263
|
+
Parameters: {"id"=>"1"}
|
55264
|
+
[1m[35mPulitzer::FreeFormSectionType Load (0.3ms)[0m SELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."id" = ? LIMIT 1 [["id", 1]]
|
55265
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.3ms)
|
55266
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/free_form_section_types/_form_fields.html.erb (0.5ms)
|
55267
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/free_form_section_types/_form.html.erb (9.2ms)
|
55268
|
+
Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.3ms)
|
55269
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
55270
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55271
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55272
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55273
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55274
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "free as a bird"], ["plural", "t"], ["created_at", "2016-07-05 17:34:46.161768"], ["updated_at", "2016-07-05 17:34:46.161768"]]
|
55275
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55276
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55277
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?)[0m [["name", "main content"], ["post_type_id", 1]]
|
55278
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55279
|
+
Processing by Pulitzer::FreeFormSectionTypesController#update as HTML
|
55280
|
+
Parameters: {"free_form_section_type"=>{"name"=>"edited name"}, "id"=>"1"}
|
55281
|
+
[1m[36mPulitzer::FreeFormSectionType Load (0.1ms)[0m [1mSELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55282
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55283
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_free_form_section_types" SET "name" = ? WHERE "pulitzer_free_form_section_types"."id" = ?[0m [["name", "edited name"], ["id", 1]]
|
55284
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55285
|
+
[1m[36mPulitzer::PostType Load (0.0ms)[0m [1mSELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55286
|
+
[1m[35mPulitzer::Post Load (0.0ms)[0m SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? [["post_type_id", 1]]
|
55287
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/free_form_section_types/_show.html.erb (4.3ms)
|
55288
|
+
Completed 200 OK in 9ms (Views: 4.8ms | ActiveRecord: 0.4ms)
|
55289
|
+
[1m[36mPulitzer::FreeFormSectionType Load (0.1ms)[0m [1mSELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55290
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
55291
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55292
|
+
[1m[35m (0.1ms)[0m commit transaction
|
55293
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55294
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55295
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "free as a bird"], ["plural", "t"], ["created_at", "2016-07-05 17:34:46.181655"], ["updated_at", "2016-07-05 17:34:46.181655"]]
|
55296
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55297
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55298
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?) [["name", "main content"], ["post_type_id", 1]]
|
55299
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55300
|
+
Processing by Pulitzer::FreeFormSectionTypesController#destroy as HTML
|
55301
|
+
Parameters: {"id"=>"1"}
|
55302
|
+
[1m[35mPulitzer::FreeFormSectionType Load (0.1ms)[0m SELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."id" = ? LIMIT 1 [["id", 1]]
|
55303
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55304
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."id" = ? [["id", 1]]
|
55305
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55306
|
+
[1m[35mPulitzer::PostType Load (0.0ms)[0m SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
|
55307
|
+
[1m[36mPulitzer::Post Load (0.0ms)[0m [1mSELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ?[0m [["post_type_id", 1]]
|
55308
|
+
Rendered text template (0.0ms)
|
55309
|
+
Completed 200 OK in 6ms (Views: 3.2ms | ActiveRecord: 0.3ms)
|
55310
|
+
[1m[35mPulitzer::FreeFormSectionType Load (0.1ms)[0m SELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."id" = ? LIMIT 1 [["id", 1]]
|
55311
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
55312
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55313
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55314
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55315
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55316
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "kind", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Centered Text White BG"], ["plural", "t"], ["kind", 1], ["created_at", "2016-07-05 17:34:46.201047"], ["updated_at", "2016-07-05 17:34:46.201047"]]
|
55317
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55318
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55319
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?)[0m [["name", "free as a bird"]]
|
55320
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55321
|
+
Processing by Pulitzer::PartialsController#new as HTML
|
55322
|
+
Parameters: {"partial"=>{"free_form_section_id"=>"1"}}
|
55323
|
+
[1m[36mPulitzer::FreeFormSection Load (0.1ms)[0m [1mSELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1[0m [["id", 1]]
|
55324
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms)
|
55325
|
+
[1m[35mPulitzer::PostType Load (0.6ms)[0m SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 1]]
|
55326
|
+
[1m[36mPulitzer::PostType Load (0.0ms)[0m [1mSELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ?[0m [["kind", 1]]
|
55327
|
+
[1m[35mPulitzer::Layout Load (0.1ms)[0m SELECT "pulitzer_layouts".* FROM "pulitzer_layouts" WHERE "pulitzer_layouts"."post_type_id" = ? [["post_type_id", 1]]
|
55328
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/partials/_new.html.erb (14.9ms)
|
55329
|
+
Completed 200 OK in 30ms (Views: 18.6ms | ActiveRecord: 1.2ms)
|
55330
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
55331
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55332
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55333
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55334
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55335
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "kind", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Centered Text White BG"], ["plural", "t"], ["kind", 1], ["created_at", "2016-07-05 17:34:46.247093"], ["updated_at", "2016-07-05 17:34:46.247093"]]
|
55336
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55337
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55338
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?)[0m [["name", "free as a bird"]]
|
55339
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55340
|
+
Processing by Pulitzer::PartialsController#create as HTML
|
55341
|
+
Parameters: {"partial"=>{"post_type_id"=>"1", "free_form_section_id"=>"1"}}
|
55342
|
+
[1m[36mPulitzer::FreeFormSection Load (0.1ms)[0m [1mSELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1[0m [["id", 1]]
|
55343
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55344
|
+
[1m[36mPulitzer::FreeFormSection Load (0.0ms)[0m [1mSELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1[0m [["id", 1]]
|
55345
|
+
[1m[35m (0.1ms)[0m SELECT MAX("pulitzer_partials"."sort_order") FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? [["free_form_section_id", 1]]
|
55346
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_partials" ("post_type_id", "free_form_section_id", "sort_order") VALUES (?, ?, ?)[0m [["post_type_id", 1], ["free_form_section_id", 1], ["sort_order", 1]]
|
55347
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55348
|
+
[1m[36mPulitzer::PostType Load (0.0ms)[0m [1mSELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55349
|
+
[1m[35mPulitzer::PostTypeContentElementType Load (0.2ms)[0m SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]]
|
55350
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.3ms)
|
55351
|
+
[1m[36mPulitzer::ContentElement Load (0.1ms)[0m [1mSELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."partial_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC[0m [["partial_id", 1]]
|
55352
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/content_elements/_partial_index.html.erb (3.0ms)
|
55353
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/partials/_show.html.erb (9.8ms)
|
55354
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/partials/_show_wrapper.html.erb (11.4ms)
|
55355
|
+
Completed 200 OK in 23ms (Views: 13.0ms | ActiveRecord: 0.9ms)
|
55356
|
+
[1m[35mPulitzer::Partial Load (0.1ms)[0m SELECT "pulitzer_partials".* FROM "pulitzer_partials" ORDER BY "pulitzer_partials"."id" DESC LIMIT 1
|
55357
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
55358
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55359
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
55360
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55361
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55362
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?) [["name", "free as a bird"]]
|
55363
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55364
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55365
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "kind", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "Centered Text White BG"], ["plural", "t"], ["kind", 1], ["created_at", "2016-07-05 17:34:46.282809"], ["updated_at", "2016-07-05 17:34:46.282809"]]
|
55366
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55367
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55368
|
+
[1m[35mPulitzer::FreeFormSection Load (0.0ms)[0m SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1 [["id", 1]]
|
55369
|
+
[1m[36m (0.0ms)[0m [1mSELECT MAX("pulitzer_partials"."sort_order") FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ?[0m [["free_form_section_id", 1]]
|
55370
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_partials" ("post_type_id", "free_form_section_id", "sort_order") VALUES (?, ?, ?) [["post_type_id", 1], ["free_form_section_id", 1], ["sort_order", 1]]
|
55371
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55372
|
+
Processing by Pulitzer::PartialsController#edit as HTML
|
55373
|
+
Parameters: {"id"=>"1"}
|
55374
|
+
[1m[35mPulitzer::Partial Load (0.1ms)[0m SELECT "pulitzer_partials".* FROM "pulitzer_partials" WHERE "pulitzer_partials"."id" = ? LIMIT 1 [["id", 1]]
|
55375
|
+
[1m[36mPulitzer::PostType Load (0.1ms)[0m [1mSELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55376
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.0ms)
|
55377
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms)
|
55378
|
+
[1m[35mPulitzer::Layout Load (0.1ms)[0m SELECT "pulitzer_layouts".* FROM "pulitzer_layouts" WHERE "pulitzer_layouts"."post_type_id" = ? [["post_type_id", 1]]
|
55379
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/partials/_form.html.erb (13.2ms)
|
55380
|
+
Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms)
|
55381
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
55382
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55383
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
55384
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55385
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55386
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "kind", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Left Text White BG"], ["plural", "t"], ["kind", 1], ["created_at", "2016-07-05 17:34:46.311098"], ["updated_at", "2016-07-05 17:34:46.311098"]]
|
55387
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55388
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55389
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?)[0m [["name", "free as a bird"]]
|
55390
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55391
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55392
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "kind", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Centered Text White BG"], ["plural", "t"], ["kind", 1], ["created_at", "2016-07-05 17:34:46.314439"], ["updated_at", "2016-07-05 17:34:46.314439"]]
|
55393
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55394
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55395
|
+
[1m[36mPulitzer::FreeFormSection Load (0.0ms)[0m [1mSELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1[0m [["id", 1]]
|
55396
|
+
[1m[35m (0.0ms)[0m SELECT MAX("pulitzer_partials"."sort_order") FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? [["free_form_section_id", 1]]
|
55397
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_partials" ("post_type_id", "free_form_section_id", "sort_order") VALUES (?, ?, ?)[0m [["post_type_id", 2], ["free_form_section_id", 1], ["sort_order", 1]]
|
55398
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55399
|
+
Processing by Pulitzer::PartialsController#update as HTML
|
55400
|
+
Parameters: {"partial"=>{"post_type_id"=>"1"}, "id"=>"1"}
|
55401
|
+
[1m[36mPulitzer::Partial Load (0.1ms)[0m [1mSELECT "pulitzer_partials".* FROM "pulitzer_partials" WHERE "pulitzer_partials"."id" = ? LIMIT 1[0m [["id", 1]]
|
55402
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55403
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_partials" SET "post_type_id" = ? WHERE "pulitzer_partials"."id" = ?[0m [["post_type_id", 1], ["id", 1]]
|
55404
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55405
|
+
[1m[36mPulitzer::PostType Load (0.0ms)[0m [1mSELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55406
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.1ms)
|
55407
|
+
[1m[35mPulitzer::ContentElement Load (0.0ms)[0m SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."partial_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["partial_id", 1]]
|
55408
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/content_elements/_partial_index.html.erb (1.1ms)
|
55409
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/partials/_show.html.erb (4.7ms)
|
55410
|
+
Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.4ms)
|
55411
|
+
[1m[36mPulitzer::Partial Load (0.0ms)[0m [1mSELECT "pulitzer_partials".* FROM "pulitzer_partials" WHERE "pulitzer_partials"."id" = ? LIMIT 1[0m [["id", 1]]
|
55412
|
+
[1m[35mPulitzer::PostType Load (0.0ms)[0m SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
|
55413
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
55414
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55415
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55416
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55417
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55418
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 1' LIMIT 1
|
55419
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 1"], ["created_at", "2016-07-05 17:34:46.344641"], ["updated_at", "2016-07-05 17:34:46.344641"]]
|
55420
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55421
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55422
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 2' LIMIT 1
|
55423
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "The north 2"], ["hierarchical", "t"], ["created_at", "2016-07-05 17:34:46.348886"], ["updated_at", "2016-07-05 17:34:46.348886"]]
|
55424
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55425
|
+
Processing by Pulitzer::TagsController#index as HTML
|
55426
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_index.html.erb (0.2ms)
|
55427
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
55428
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
55429
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55430
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55431
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55432
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55433
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 3' LIMIT 1
|
55434
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 3"], ["created_at", "2016-07-05 17:34:46.364001"], ["updated_at", "2016-07-05 17:34:46.364001"]]
|
55435
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55436
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55437
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 4' LIMIT 1
|
55438
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "The north 4"], ["hierarchical", "t"], ["created_at", "2016-07-05 17:34:46.366337"], ["updated_at", "2016-07-05 17:34:46.366337"]]
|
55439
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55440
|
+
Processing by Pulitzer::TagsController#index as HTML
|
55441
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_index.html.erb (0.3ms)
|
55442
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
55443
|
+
[1m[36mPulitzer::Tag Load (0.1ms)[0m [1mSELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f'[0m
|
55444
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
55445
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55446
|
+
[1m[35m (0.0ms)[0m commit transaction
|
55447
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55448
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55449
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 5' LIMIT 1[0m
|
55450
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 5"], ["created_at", "2016-07-05 17:34:46.378083"], ["updated_at", "2016-07-05 17:34:46.378083"]]
|
55451
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55452
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55453
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 6' LIMIT 1[0m
|
55454
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "The north 6"], ["hierarchical", "t"], ["created_at", "2016-07-05 17:34:46.380506"], ["updated_at", "2016-07-05 17:34:46.380506"]]
|
55455
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55456
|
+
Processing by Pulitzer::TagsController#index as HTML
|
55457
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_index.html.erb (0.3ms)
|
55458
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
55459
|
+
[1m[35mPulitzer::Tag Load (0.1ms)[0m SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL
|
55460
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
55461
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55462
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55463
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55464
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55465
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 7' LIMIT 1
|
55466
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 7"], ["created_at", "2016-07-05 17:34:46.391543"], ["updated_at", "2016-07-05 17:34:46.391543"]]
|
55467
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55468
|
+
Processing by Pulitzer::TagsController#show as HTML
|
55469
|
+
Parameters: {"id"=>"1"}
|
55470
|
+
[1m[36mPulitzer::Tag Load (0.1ms)[0m [1mSELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1[0m [["id", 1]]
|
55471
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.2ms)
|
55472
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
55473
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
55474
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55475
|
+
[1m[35m (0.0ms)[0m commit transaction
|
55476
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55477
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55478
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 8' LIMIT 1[0m
|
55479
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 8"], ["created_at", "2016-07-05 17:34:46.403047"], ["updated_at", "2016-07-05 17:34:46.403047"]]
|
55480
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55481
|
+
Processing by Pulitzer::TagsController#show as HTML
|
55482
|
+
Parameters: {"id"=>"1"}
|
55483
|
+
[1m[35mPulitzer::Tag Load (0.1ms)[0m SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
|
55484
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.3ms)
|
55485
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)
|
55486
|
+
[1m[36m (2.5ms)[0m [1mrollback transaction[0m
|
55487
|
+
[1m[35m (0.2ms)[0m begin transaction
|
55488
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
55489
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55490
|
+
Processing by Pulitzer::TagsController#new as HTML
|
55491
|
+
Parameters: {"tag"=>{"hierarchical"=>true}}
|
55492
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (1.3ms)
|
55493
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
55494
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
55495
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55496
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55497
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55498
|
+
Processing by Pulitzer::TagsController#new as HTML
|
55499
|
+
Parameters: {"tag"=>{"hierarchical"=>true}}
|
55500
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (0.3ms)
|
55501
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
55502
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
55503
|
+
[1m[35m (0.2ms)[0m begin transaction
|
55504
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
55505
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55506
|
+
Processing by Pulitzer::TagsController#new as HTML
|
55507
|
+
Parameters: {"tag"=>{"hierarchical"=>false}}
|
55508
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_new_flat.html.erb (0.2ms)
|
55509
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
55510
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
55511
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55512
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55513
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55514
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "pulitzer_tags"[0m
|
55515
|
+
Processing by Pulitzer::TagsController#create as HTML
|
55516
|
+
Parameters: {"tag"=>{"name"=>"The north 9"}}
|
55517
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55518
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 9' LIMIT 1[0m
|
55519
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 9"], ["created_at", "2016-07-05 17:34:46.457015"], ["updated_at", "2016-07-05 17:34:46.457015"]]
|
55520
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55521
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.2ms)
|
55522
|
+
Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 0.5ms)
|
55523
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "pulitzer_tags"
|
55524
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
55525
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55526
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55527
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55528
|
+
Processing by Pulitzer::TagsController#create as HTML
|
55529
|
+
Parameters: {"tag"=>{"name"=>"The north 10"}}
|
55530
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55531
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 10' LIMIT 1
|
55532
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 10"], ["created_at", "2016-07-05 17:34:46.468736"], ["updated_at", "2016-07-05 17:34:46.468736"]]
|
55533
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55534
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.2ms)
|
55535
|
+
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.7ms)
|
55536
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
55537
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55538
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55539
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55540
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55541
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awesomesauce' LIMIT 1
|
55542
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "awesomesauce"], ["created_at", "2016-07-05 17:34:46.474960"], ["updated_at", "2016-07-05 17:34:46.474960"]]
|
55543
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55544
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "pulitzer_tags"[0m
|
55545
|
+
Processing by Pulitzer::TagsController#create as HTML
|
55546
|
+
Parameters: {"tag"=>{"name"=>"awesomesauce"}}
|
55547
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55548
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awesomesauce' LIMIT 1[0m
|
55549
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
55550
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_new_flat.html.erb (0.2ms)
|
55551
|
+
Completed 409 Conflict in 4ms (Views: 1.9ms | ActiveRecord: 0.2ms)
|
55552
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "pulitzer_tags"[0m
|
55553
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
55554
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55555
|
+
[1m[35m (0.0ms)[0m commit transaction
|
55556
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55557
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55558
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awesomesauce' LIMIT 1[0m
|
55559
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "awesomesauce"], ["created_at", "2016-07-05 17:34:46.489324"], ["updated_at", "2016-07-05 17:34:46.489324"]]
|
55560
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55561
|
+
Processing by Pulitzer::TagsController#create as HTML
|
55562
|
+
Parameters: {"tag"=>{"name"=>"awesomesauce"}}
|
55563
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55564
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awesomesauce' LIMIT 1[0m
|
55565
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
55566
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_new_flat.html.erb (0.2ms)
|
55567
|
+
Completed 409 Conflict in 3ms (Views: 0.8ms | ActiveRecord: 0.2ms)
|
55568
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
55569
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55570
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55571
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55572
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55573
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 13' LIMIT 1
|
55574
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 13"], ["created_at", "2016-07-05 17:34:46.501492"], ["updated_at", "2016-07-05 17:34:46.501492"]]
|
55575
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55576
|
+
Processing by Pulitzer::TagsController#edit as HTML
|
55577
|
+
Parameters: {"id"=>"1"}
|
55578
|
+
[1m[36mPulitzer::Tag Load (0.1ms)[0m [1mSELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1[0m [["id", 1]]
|
55579
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_form.html.erb (0.2ms)
|
55580
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
55581
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
55582
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55583
|
+
[1m[35m (0.0ms)[0m commit transaction
|
55584
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55585
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55586
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 14' LIMIT 1[0m
|
55587
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 14"], ["created_at", "2016-07-05 17:34:46.513773"], ["updated_at", "2016-07-05 17:34:46.513773"]]
|
55588
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55589
|
+
Processing by Pulitzer::TagsController#edit as HTML
|
55590
|
+
Parameters: {"id"=>"1"}
|
55591
|
+
[1m[35mPulitzer::Tag Load (0.1ms)[0m SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
|
55592
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_form.html.erb (0.2ms)
|
55593
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)
|
55594
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
55595
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55596
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55597
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55598
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55599
|
+
[1m[35mPulitzer::Tag Exists (0.2ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 15' LIMIT 1
|
55600
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 15"], ["created_at", "2016-07-05 17:34:46.535699"], ["updated_at", "2016-07-05 17:34:46.535699"]]
|
55601
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
55602
|
+
Processing by Pulitzer::TagsController#update as HTML
|
55603
|
+
Parameters: {"tag"=>{"name"=>"The north 16"}, "id"=>"1"}
|
55604
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_form.html.erb (0.3ms)
|
55605
|
+
Completed 409 Conflict in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
55606
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
55607
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55608
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55609
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55610
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55611
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 17' LIMIT 1
|
55612
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 17"], ["created_at", "2016-07-05 17:34:46.548924"], ["updated_at", "2016-07-05 17:34:46.548924"]]
|
55613
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55614
|
+
Processing by Pulitzer::TagsController#update as HTML
|
55615
|
+
Parameters: {"tag"=>{"name"=>"The north 18"}, "id"=>"1"}
|
55616
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55617
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'The north 18' AND "pulitzer_tags"."id" != 1) LIMIT 1
|
55618
|
+
[1m[36mSQL (0.4ms)[0m [1mUPDATE "pulitzer_tags" SET "name" = ?, "updated_at" = ? WHERE "pulitzer_tags"."id" = ?[0m [["name", "The north 18"], ["updated_at", "2016-07-05 17:34:46.557284"], ["id", 1]]
|
55619
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55620
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.2ms)
|
55621
|
+
Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.6ms)
|
55622
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
55623
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55624
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55625
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55626
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55627
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'sadpanda' LIMIT 1
|
55628
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "sadpanda"], ["created_at", "2016-07-05 17:34:46.563727"], ["updated_at", "2016-07-05 17:34:46.563727"]]
|
55629
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55630
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55631
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 20' LIMIT 1
|
55632
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 20"], ["created_at", "2016-07-05 17:34:46.567353"], ["updated_at", "2016-07-05 17:34:46.567353"]]
|
55633
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55634
|
+
Processing by Pulitzer::TagsController#update as HTML
|
55635
|
+
Parameters: {"tag"=>{"name"=>"sadpanda"}, "id"=>"2"}
|
55636
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55637
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'sadpanda' AND "pulitzer_tags"."id" != 2) LIMIT 1
|
55638
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
55639
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_form.html.erb (0.2ms)
|
55640
|
+
Completed 409 Conflict in 3ms (Views: 0.6ms | ActiveRecord: 0.2ms)
|
55641
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
55642
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55643
|
+
[1m[35m (0.0ms)[0m commit transaction
|
55644
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55645
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55646
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'sadpanda' LIMIT 1[0m
|
55647
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "sadpanda"], ["created_at", "2016-07-05 17:34:46.579770"], ["updated_at", "2016-07-05 17:34:46.579770"]]
|
55648
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55649
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55650
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 22' LIMIT 1[0m
|
55651
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 22"], ["created_at", "2016-07-05 17:34:46.583567"], ["updated_at", "2016-07-05 17:34:46.583567"]]
|
55652
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55653
|
+
Processing by Pulitzer::TagsController#update as HTML
|
55654
|
+
Parameters: {"tag"=>{"name"=>"sadpanda"}, "id"=>"2"}
|
55655
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55656
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'sadpanda' AND "pulitzer_tags"."id" != 2) LIMIT 1[0m
|
55657
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
55658
|
+
Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/tags/_form.html.erb (0.2ms)
|
55659
|
+
Completed 409 Conflict in 3ms (Views: 0.6ms | ActiveRecord: 0.2ms)
|
55660
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
55661
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55662
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55663
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55664
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55665
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 23' LIMIT 1
|
55666
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 23"], ["created_at", "2016-07-05 17:34:46.596095"], ["updated_at", "2016-07-05 17:34:46.596095"]]
|
55667
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55668
|
+
Processing by Pulitzer::TagsController#destroy as HTML
|
55669
|
+
Parameters: {"id"=>"1"}
|
55670
|
+
Rendered text template (0.0ms)
|
55671
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
55672
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
55673
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55674
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55675
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55676
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55677
|
+
[1m[35mPulitzer::Tag Exists (0.2ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 24' LIMIT 1
|
55678
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 24"], ["created_at", "2016-07-05 17:34:46.605661"], ["updated_at", "2016-07-05 17:34:46.605661"]]
|
55679
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55680
|
+
Processing by Pulitzer::TagsController#destroy as HTML
|
55681
|
+
Parameters: {"id"=>"1"}
|
55682
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55683
|
+
[1m[35mPulitzer::PostTag Load (0.1ms)[0m SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 1], ["label_type", "Pulitzer::Tag"]]
|
55684
|
+
[1m[36mPulitzer::Tag Load (0.1ms)[0m [1mSELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ?[0m [["parent_id", 1]]
|
55685
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 1]]
|
55686
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55687
|
+
Rendered text template (0.0ms)
|
55688
|
+
Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.7ms)
|
55689
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
55690
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55691
|
+
[1m[35m (0.0ms)[0m commit transaction
|
55692
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55693
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55694
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:46.626025"], ["updated_at", "2016-07-05 17:34:46.626025"]]
|
55695
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55696
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55697
|
+
[1m[35mPulitzer::Post Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-1"]]
|
55698
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 1"], ["post_type_id", 1], ["slug", "winterfell-news-1"], ["created_at", "2016-07-05 17:34:46.722851"], ["updated_at", "2016-07-05 17:34:46.722851"]]
|
55699
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:46.726114"], ["updated_at", "2016-07-05 17:34:46.726114"]]
|
55700
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55701
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55702
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["post_id", 1], ["created_at", "2016-07-05 17:34:46.728313"], ["updated_at", "2016-07-05 17:34:46.728313"]]
|
55703
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55704
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55705
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 1' LIMIT 1
|
55706
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 1"], ["created_at", "2016-07-05 17:34:46.741047"], ["updated_at", "2016-07-05 17:34:46.741047"]]
|
55707
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55708
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55709
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 1"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 1], ["version_id", 2], ["created_at", "2016-07-05 17:34:46.743363"], ["updated_at", "2016-07-05 17:34:46.743363"]]
|
55710
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55711
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55712
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 2' LIMIT 1[0m
|
55713
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 2"], ["created_at", "2016-07-05 17:34:46.745899"], ["updated_at", "2016-07-05 17:34:46.745899"]]
|
55714
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55715
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55716
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 2"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 2], ["version_id", 2], ["created_at", "2016-07-05 17:34:46.747217"], ["updated_at", "2016-07-05 17:34:46.747217"]]
|
55717
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55718
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55719
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 3' LIMIT 1
|
55720
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 3"], ["created_at", "2016-07-05 17:34:46.749673"], ["updated_at", "2016-07-05 17:34:46.749673"]]
|
55721
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55722
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55723
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 3"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 3], ["version_id", 2], ["created_at", "2016-07-05 17:34:46.751206"], ["updated_at", "2016-07-05 17:34:46.751206"]]
|
55724
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55725
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? [["version_id", 2]]
|
55726
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55727
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["status", 4], ["post_id", 1], ["created_at", "2016-07-05 17:34:46.755246"], ["updated_at", "2016-07-05 17:34:46.755246"]]
|
55728
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55729
|
+
Pulitzer::CloneVersion !!!
|
55730
|
+
/Users/eric/.rvm/gems/ruby-2.3.0/bin/rspec
|
55731
|
+
[1m[35mPulitzer::Version Load (0.1ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 4]]
|
55732
|
+
[1m[36mPulitzer::ContentElement Load (0.1ms)[0m [1mSELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC[0m [["version_id", 2]]
|
55733
|
+
[1m[35mPulitzer::ContentElementType Load (0.1ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
|
55734
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55735
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 1"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 1], ["created_at", "2016-07-05 17:34:46.743363"], ["updated_at", "2016-07-05 17:34:46.743363"]]
|
55736
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55737
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55738
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ?[0m [["version_id", 3], ["updated_at", "2016-07-05 17:34:46.763591"], ["id", 4]]
|
55739
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55740
|
+
[1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 2]]
|
55741
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55742
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 2"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 2], ["created_at", "2016-07-05 17:34:46.747217"], ["updated_at", "2016-07-05 17:34:46.747217"]]
|
55743
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55744
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55745
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["version_id", 3], ["updated_at", "2016-07-05 17:34:46.768873"], ["id", 5]]
|
55746
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55747
|
+
[1m[35mPulitzer::ContentElementType Load (0.1ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 3]]
|
55748
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55749
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 3"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 3], ["created_at", "2016-07-05 17:34:46.751206"], ["updated_at", "2016-07-05 17:34:46.751206"]]
|
55750
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55751
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55752
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ?[0m [["version_id", 3], ["updated_at", "2016-07-05 17:34:46.775009"], ["id", 6]]
|
55753
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55754
|
+
[1m[36mPulitzer::FreeFormSection Load (0.1ms)[0m [1mSELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ?[0m [["version_id", 2]]
|
55755
|
+
[1m[35mPulitzer::PostTag Load (0.1ms)[0m SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? [["version_id", 2]]
|
55756
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55757
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 0], ["updated_at", "2016-07-05 17:34:46.779527"], ["id", 3]]
|
55758
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55759
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? [["version_id", 3]]
|
55760
|
+
[1m[36m (1.5ms)[0m [1mrollback transaction[0m
|
55761
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55762
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55763
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55764
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55765
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:46.789976"], ["updated_at", "2016-07-05 17:34:46.789976"]]
|
55766
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55767
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55768
|
+
[1m[36mPulitzer::Post Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1[0m [["slug", "winterfell-news-2"]]
|
55769
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Winterfell news 2"], ["post_type_id", 1], ["slug", "winterfell-news-2"], ["created_at", "2016-07-05 17:34:46.793107"], ["updated_at", "2016-07-05 17:34:46.793107"]]
|
55770
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["post_id", 1], ["created_at", "2016-07-05 17:34:46.794943"], ["updated_at", "2016-07-05 17:34:46.794943"]]
|
55771
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55772
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55773
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:46.796851"], ["updated_at", "2016-07-05 17:34:46.796851"]]
|
55774
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55775
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55776
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?)[0m [["name", "section A"], ["version_id", 2]]
|
55777
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55778
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55779
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?) [["name", "section B"], ["version_id", 2]]
|
55780
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55781
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55782
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?)[0m [["name", "section C"], ["version_id", 2]]
|
55783
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55784
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ?[0m [["version_id", 2]]
|
55785
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55786
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["status", 4], ["post_id", 1], ["created_at", "2016-07-05 17:34:46.803368"], ["updated_at", "2016-07-05 17:34:46.803368"]]
|
55787
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55788
|
+
Pulitzer::CloneVersion !!!
|
55789
|
+
/Users/eric/.rvm/gems/ruby-2.3.0/bin/rspec
|
55790
|
+
[1m[36mPulitzer::Version Load (0.1ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 4]]
|
55791
|
+
[1m[35mPulitzer::ContentElement Load (0.0ms)[0m SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 2]]
|
55792
|
+
[1m[36mPulitzer::FreeFormSection Load (0.0ms)[0m [1mSELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ?[0m [["version_id", 2]]
|
55793
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55794
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?)[0m [["name", "section A"]]
|
55795
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55796
|
+
[1m[36mPulitzer::Partial Load (0.1ms)[0m [1mSELECT "pulitzer_partials".* FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? ORDER BY "pulitzer_partials"."sort_order" ASC[0m [["free_form_section_id", 1]]
|
55797
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55798
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_free_form_sections" SET "version_id" = ? WHERE "pulitzer_free_form_sections"."id" = ?[0m [["version_id", 3], ["id", 4]]
|
55799
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55800
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55801
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?) [["name", "section B"]]
|
55802
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55803
|
+
[1m[35mPulitzer::Partial Load (0.0ms)[0m SELECT "pulitzer_partials".* FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? ORDER BY "pulitzer_partials"."sort_order" ASC [["free_form_section_id", 2]]
|
55804
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55805
|
+
[1m[35mSQL (0.0ms)[0m UPDATE "pulitzer_free_form_sections" SET "version_id" = ? WHERE "pulitzer_free_form_sections"."id" = ? [["version_id", 3], ["id", 5]]
|
55806
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55807
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55808
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?)[0m [["name", "section C"]]
|
55809
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55810
|
+
[1m[36mPulitzer::Partial Load (0.0ms)[0m [1mSELECT "pulitzer_partials".* FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? ORDER BY "pulitzer_partials"."sort_order" ASC[0m [["free_form_section_id", 3]]
|
55811
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55812
|
+
[1m[36mSQL (0.0ms)[0m [1mUPDATE "pulitzer_free_form_sections" SET "version_id" = ? WHERE "pulitzer_free_form_sections"."id" = ?[0m [["version_id", 3], ["id", 6]]
|
55813
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55814
|
+
[1m[36mPulitzer::PostTag Load (0.0ms)[0m [1mSELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ?[0m [["version_id", 2]]
|
55815
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55816
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ?[0m [["status", 0], ["updated_at", "2016-07-05 17:34:46.817654"], ["id", 3]]
|
55817
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55818
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ?[0m [["version_id", 3]]
|
55819
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
55820
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55821
|
+
[1m[35m (0.0ms)[0m commit transaction
|
55822
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55823
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55824
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:46.826780"], ["updated_at", "2016-07-05 17:34:46.826780"]]
|
55825
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55826
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55827
|
+
[1m[35mPulitzer::Post Exists (0.0ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-3"]]
|
55828
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 3"], ["post_type_id", 1], ["slug", "winterfell-news-3"], ["created_at", "2016-07-05 17:34:46.829658"], ["updated_at", "2016-07-05 17:34:46.829658"]]
|
55829
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:46.832416"], ["updated_at", "2016-07-05 17:34:46.832416"]]
|
55830
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55831
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55832
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["post_id", 1], ["created_at", "2016-07-05 17:34:46.834482"], ["updated_at", "2016-07-05 17:34:46.834482"]]
|
55833
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55834
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55835
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 4' LIMIT 1
|
55836
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 4"], ["created_at", "2016-07-05 17:34:46.837483"], ["updated_at", "2016-07-05 17:34:46.837483"]]
|
55837
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55838
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55839
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 4"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 1], ["version_id", 2], ["created_at", "2016-07-05 17:34:46.839171"], ["updated_at", "2016-07-05 17:34:46.839171"]]
|
55840
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55841
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55842
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 5' LIMIT 1[0m
|
55843
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 5"], ["created_at", "2016-07-05 17:34:46.842681"], ["updated_at", "2016-07-05 17:34:46.842681"]]
|
55844
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55845
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55846
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 5"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 2], ["version_id", 2], ["created_at", "2016-07-05 17:34:46.844613"], ["updated_at", "2016-07-05 17:34:46.844613"]]
|
55847
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55848
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55849
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 6' LIMIT 1
|
55850
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 6"], ["created_at", "2016-07-05 17:34:46.847842"], ["updated_at", "2016-07-05 17:34:46.847842"]]
|
55851
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55852
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55853
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 6"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 3], ["version_id", 2], ["created_at", "2016-07-05 17:34:46.849872"], ["updated_at", "2016-07-05 17:34:46.849872"]]
|
55854
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55855
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55856
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["status", 4], ["post_id", 1], ["created_at", "2016-07-05 17:34:46.851912"], ["updated_at", "2016-07-05 17:34:46.851912"]]
|
55857
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55858
|
+
Pulitzer::CloneVersion !!!
|
55859
|
+
/Users/eric/.rvm/gems/ruby-2.3.0/bin/rspec
|
55860
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 4]]
|
55861
|
+
[1m[35mPulitzer::ContentElement Load (0.0ms)[0m SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 2]]
|
55862
|
+
[1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55863
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55864
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 4"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 1], ["created_at", "2016-07-05 17:34:46.839171"], ["updated_at", "2016-07-05 17:34:46.839171"]]
|
55865
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55866
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55867
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["version_id", 3], ["updated_at", "2016-07-05 17:34:46.858933"], ["id", 4]]
|
55868
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55869
|
+
[1m[35mPulitzer::ContentElementType Load (0.0ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 2]]
|
55870
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55871
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 5"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 2], ["created_at", "2016-07-05 17:34:46.844613"], ["updated_at", "2016-07-05 17:34:46.844613"]]
|
55872
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55873
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55874
|
+
[1m[36mSQL (0.0ms)[0m [1mUPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ?[0m [["version_id", 3], ["updated_at", "2016-07-05 17:34:46.864343"], ["id", 5]]
|
55875
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55876
|
+
[1m[36mPulitzer::ContentElementType Load (0.1ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 3]]
|
55877
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55878
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 6"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 3], ["created_at", "2016-07-05 17:34:46.849872"], ["updated_at", "2016-07-05 17:34:46.849872"]]
|
55879
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55880
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55881
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["version_id", 3], ["updated_at", "2016-07-05 17:34:46.870190"], ["id", 6]]
|
55882
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55883
|
+
[1m[35mPulitzer::FreeFormSection Load (0.0ms)[0m SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 2]]
|
55884
|
+
[1m[36mPulitzer::PostTag Load (0.0ms)[0m [1mSELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ?[0m [["version_id", 2]]
|
55885
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55886
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ?[0m [["status", 0], ["updated_at", "2016-07-05 17:34:46.873365"], ["id", 3]]
|
55887
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55888
|
+
[1m[36mPulitzer::ContentElement Load (0.2ms)[0m [1mSELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1[0m [["version_id", 3]]
|
55889
|
+
[1m[35mPulitzer::ContentElementType Load (0.1ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
|
55890
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
55891
|
+
[1m[35m (0.1ms)[0m begin transaction
|
55892
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
55893
|
+
[1m[35m (0.0ms)[0m begin transaction
|
55894
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55895
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:46.883101"], ["updated_at", "2016-07-05 17:34:46.883101"]]
|
55896
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55897
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55898
|
+
[1m[36mPulitzer::ContentElementType Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 7' LIMIT 1[0m
|
55899
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 7"], ["created_at", "2016-07-05 17:34:46.890441"], ["updated_at", "2016-07-05 17:34:46.890441"]]
|
55900
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55901
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55902
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_post_type_content_element_types" ("label", "content_element_type_id", "post_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 1"], ["content_element_type_id", 1], ["post_type_id", 1], ["created_at", "2016-07-05 17:34:46.893085"], ["updated_at", "2016-07-05 17:34:46.893085"]]
|
55903
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55904
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55905
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 8' LIMIT 1
|
55906
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 8"], ["created_at", "2016-07-05 17:34:46.895666"], ["updated_at", "2016-07-05 17:34:46.895666"]]
|
55907
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55908
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55909
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "pulitzer_post_type_content_element_types" ("label", "content_element_type_id", "post_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["label", "Slide 1 content element 2"], ["content_element_type_id", 2], ["post_type_id", 1], ["created_at", "2016-07-05 17:34:46.897177"], ["updated_at", "2016-07-05 17:34:46.897177"]]
|
55910
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55911
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55912
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 9' LIMIT 1[0m
|
55913
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 9"], ["created_at", "2016-07-05 17:34:46.899295"], ["updated_at", "2016-07-05 17:34:46.899295"]]
|
55914
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55915
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55916
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_post_type_content_element_types" ("label", "content_element_type_id", "post_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 3"], ["content_element_type_id", 3], ["post_type_id", 1], ["created_at", "2016-07-05 17:34:46.900782"], ["updated_at", "2016-07-05 17:34:46.900782"]]
|
55917
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55918
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_post_types" SET "kind" = 1 WHERE "pulitzer_post_types"."id" = ?[0m [["id", 1]]
|
55919
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? [["post_type_id", 1]]
|
55920
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55921
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?) [["name", "test"]]
|
55922
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55923
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55924
|
+
[1m[36mPulitzer::FreeFormSection Load (0.0ms)[0m [1mSELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1[0m [["id", 1]]
|
55925
|
+
[1m[35m (0.0ms)[0m SELECT MAX("pulitzer_partials"."sort_order") FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? [["free_form_section_id", 1]]
|
55926
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_partials" ("post_type_id", "free_form_section_id", "sort_order") VALUES (?, ?, ?)[0m [["post_type_id", 1], ["free_form_section_id", 1], ["sort_order", 1]]
|
55927
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55928
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."partial_id" = ?[0m [["partial_id", 1]]
|
55929
|
+
[1m[35mPulitzer::PostType Load (0.0ms)[0m SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
|
55930
|
+
[1m[36mPulitzer::PostTypeContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC[0m [["post_type_id", 1]]
|
55931
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55932
|
+
[1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55933
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_content_elements" ("partial_id", "label", "content_element_type_id", "post_type_content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["partial_id", 1], ["label", "Slide 1 content element 1"], ["content_element_type_id", 1], ["post_type_content_element_type_id", 1], ["created_at", "2016-07-05 17:34:46.912851"], ["updated_at", "2016-07-05 17:34:46.912851"]]
|
55934
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55935
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
55936
|
+
[1m[36mPulitzer::ContentElementType Load (0.1ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 2]]
|
55937
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("partial_id", "label", "content_element_type_id", "post_type_content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["partial_id", 1], ["label", "Slide 1 content element 2"], ["content_element_type_id", 2], ["post_type_content_element_type_id", 2], ["created_at", "2016-07-05 17:34:46.917630"], ["updated_at", "2016-07-05 17:34:46.917630"]]
|
55938
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55939
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55940
|
+
[1m[36mPulitzer::ContentElementType Load (0.1ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 3]]
|
55941
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("partial_id", "label", "content_element_type_id", "post_type_content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["partial_id", 1], ["label", "Slide 1 content element 3"], ["content_element_type_id", 3], ["post_type_content_element_type_id", 3], ["created_at", "2016-07-05 17:34:46.922320"], ["updated_at", "2016-07-05 17:34:46.922320"]]
|
55942
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55943
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
55944
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
55945
|
+
[1m[35m (0.0ms)[0m commit transaction
|
55946
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55947
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55948
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:46.927607"], ["updated_at", "2016-07-05 17:34:46.927607"]]
|
55949
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55950
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55951
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 10' LIMIT 1
|
55952
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 10"], ["created_at", "2016-07-05 17:34:46.930530"], ["updated_at", "2016-07-05 17:34:46.930530"]]
|
55953
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55954
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
55955
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_post_type_content_element_types" ("label", "content_element_type_id", "post_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["label", "Slide 1 content element 4"], ["content_element_type_id", 1], ["post_type_id", 1], ["created_at", "2016-07-05 17:34:46.932491"], ["updated_at", "2016-07-05 17:34:46.932491"]]
|
55956
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55957
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55958
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 11' LIMIT 1[0m
|
55959
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 11"], ["created_at", "2016-07-05 17:34:46.935322"], ["updated_at", "2016-07-05 17:34:46.935322"]]
|
55960
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55961
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55962
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_post_type_content_element_types" ("label", "content_element_type_id", "post_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 5"], ["content_element_type_id", 2], ["post_type_id", 1], ["created_at", "2016-07-05 17:34:46.937110"], ["updated_at", "2016-07-05 17:34:46.937110"]]
|
55963
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55964
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55965
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 12' LIMIT 1
|
55966
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 12"], ["created_at", "2016-07-05 17:34:46.939433"], ["updated_at", "2016-07-05 17:34:46.939433"]]
|
55967
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
55968
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55969
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_post_type_content_element_types" ("label", "content_element_type_id", "post_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["label", "Slide 1 content element 6"], ["content_element_type_id", 3], ["post_type_id", 1], ["created_at", "2016-07-05 17:34:46.940879"], ["updated_at", "2016-07-05 17:34:46.940879"]]
|
55970
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55971
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? [["post_type_id", 1]]
|
55972
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55973
|
+
[1m[35mPulitzer::Post Exists (0.0ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-4"]]
|
55974
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 4"], ["post_type_id", 1], ["slug", "winterfell-news-4"], ["created_at", "2016-07-05 17:34:46.944246"], ["updated_at", "2016-07-05 17:34:46.944246"]]
|
55975
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:46.945979"], ["updated_at", "2016-07-05 17:34:46.945979"]]
|
55976
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55977
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
55978
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ?[0m [["version_id", 1]]
|
55979
|
+
[1m[35mPulitzer::PostTypeContentElementType Load (0.0ms)[0m SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]]
|
55980
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 0]]
|
55981
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55982
|
+
[1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
55983
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("version_id", "label", "content_element_type_id", "post_type_content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["version_id", 1], ["label", "Slide 1 content element 4"], ["content_element_type_id", 1], ["post_type_content_element_type_id", 1], ["created_at", "2016-07-05 17:34:46.952687"], ["updated_at", "2016-07-05 17:34:46.952687"]]
|
55984
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55985
|
+
[1m[35mPulitzer::Version Load (0.1ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
55986
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
55987
|
+
[1m[35mPulitzer::ContentElementType Load (0.0ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 2]]
|
55988
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("version_id", "label", "content_element_type_id", "post_type_content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["version_id", 1], ["label", "Slide 1 content element 5"], ["content_element_type_id", 2], ["post_type_content_element_type_id", 2], ["created_at", "2016-07-05 17:34:46.956438"], ["updated_at", "2016-07-05 17:34:46.956438"]]
|
55989
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
55990
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 0]]
|
55991
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55992
|
+
[1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 3]]
|
55993
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("version_id", "label", "content_element_type_id", "post_type_content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["version_id", 1], ["label", "Slide 1 content element 6"], ["content_element_type_id", 3], ["post_type_content_element_type_id", 3], ["created_at", "2016-07-05 17:34:46.960231"], ["updated_at", "2016-07-05 17:34:46.960231"]]
|
55994
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
55995
|
+
[1m[35mPulitzer::FreeFormSectionType Load (0.1ms)[0m SELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."post_type_id" = ? [["post_type_id", 1]]
|
55996
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 0]]
|
55997
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? [["version_id", 1]]
|
55998
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
55999
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56000
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56001
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56002
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56003
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:46.968666"], ["updated_at", "2016-07-05 17:34:46.968666"]]
|
56004
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56005
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56006
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?)[0m [["name", "Main Body"], ["post_type_id", 1]]
|
56007
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56008
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56009
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?) [["name", "Side Bar"], ["post_type_id", 1]]
|
56010
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56011
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56012
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?)[0m [["name", "Footer List"], ["post_type_id", 1]]
|
56013
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56014
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56015
|
+
[1m[35mPulitzer::Post Exists (0.0ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "test"]]
|
56016
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "test"], ["post_type_id", 1], ["slug", "test"], ["created_at", "2016-07-05 17:34:46.976203"], ["updated_at", "2016-07-05 17:34:46.976203"]]
|
56017
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:46.977882"], ["updated_at", "2016-07-05 17:34:46.977882"]]
|
56018
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56019
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."post_type_id" = ? [["post_type_id", 1]]
|
56020
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 0]]
|
56021
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 1]]
|
56022
|
+
[1m[36mPulitzer::PostType Load (0.1ms)[0m [1mSELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
56023
|
+
[1m[35mPulitzer::PostTypeContentElementType Load (0.1ms)[0m SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]]
|
56024
|
+
[1m[36mPulitzer::FreeFormSectionType Load (0.0ms)[0m [1mSELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."post_type_id" = ?[0m [["post_type_id", 1]]
|
56025
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
56026
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56027
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?) [["name", "Main Body"], ["version_id", 1]]
|
56028
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56029
|
+
[1m[35mPulitzer::Version Load (0.1ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
56030
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56031
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?) [["name", "Side Bar"], ["version_id", 1]]
|
56032
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56033
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
56034
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56035
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?) [["name", "Footer List"], ["version_id", 1]]
|
56036
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56037
|
+
[1m[35mPulitzer::Version Load (0.1ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
56038
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ?[0m [["version_id", 1]]
|
56039
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
56040
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56041
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56042
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56043
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56044
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:46.995519"], ["updated_at", "2016-07-05 17:34:46.995519"]]
|
56045
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56046
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56047
|
+
[1m[35mPulitzer::Post Exists (0.0ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-5"]]
|
56048
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 5"], ["post_type_id", 1], ["slug", "winterfell-news-5"], ["created_at", "2016-07-05 17:34:46.998177"], ["updated_at", "2016-07-05 17:34:46.998177"]]
|
56049
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.000091"], ["updated_at", "2016-07-05 17:34:47.000091"]]
|
56050
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56051
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56052
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["post_id", 1], ["created_at", "2016-07-05 17:34:47.001953"], ["updated_at", "2016-07-05 17:34:47.001953"]]
|
56053
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56054
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56055
|
+
[1m[35mPulitzer::ContentElementType Exists (0.2ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 13' LIMIT 1
|
56056
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 13"], ["created_at", "2016-07-05 17:34:47.006084"], ["updated_at", "2016-07-05 17:34:47.006084"]]
|
56057
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56058
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56059
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 7"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 1], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.008207"], ["updated_at", "2016-07-05 17:34:47.008207"]]
|
56060
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56061
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56062
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 14' LIMIT 1[0m
|
56063
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 14"], ["created_at", "2016-07-05 17:34:47.012032"], ["updated_at", "2016-07-05 17:34:47.012032"]]
|
56064
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56065
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56066
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 8"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 2], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.014598"], ["updated_at", "2016-07-05 17:34:47.014598"]]
|
56067
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56068
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56069
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 15' LIMIT 1
|
56070
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 15"], ["created_at", "2016-07-05 17:34:47.019651"], ["updated_at", "2016-07-05 17:34:47.019651"]]
|
56071
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56072
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56073
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 9"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 3], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.021913"], ["updated_at", "2016-07-05 17:34:47.021913"]]
|
56074
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56075
|
+
[1m[35mPulitzer::Version Load (0.1ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
|
56076
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56077
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 1], ["updated_at", "2016-07-05 17:34:47.026828"], ["id", 2]]
|
56078
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56079
|
+
[1m[35mPulitzer::Tag Load (0.2ms)[0m SELECT "pulitzer_tags".* FROM "pulitzer_tags" INNER JOIN "pulitzer_post_tags" ON "pulitzer_tags"."id" = "pulitzer_post_tags"."label_id" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 2], ["label_type", "Pulitzer::Tag"]]
|
56080
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56081
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["status", 4], ["post_id", 1], ["created_at", "2016-07-05 17:34:47.035461"], ["updated_at", "2016-07-05 17:34:47.035461"]]
|
56082
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56083
|
+
[ActiveJob] Enqueued Pulitzer::CloneVersionJob (Job ID: 4e1f22c0-9e45-408f-b725-0b2115625556) to Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
|
56084
|
+
[ActiveJob] [1m[35mPulitzer::Version Load (0.1ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 2]]
|
56085
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] Performing Pulitzer::CloneVersionJob from Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
|
56086
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36mPulitzer::Post Load (0.1ms)[0m [1mSELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1[0m [["id", 1]]
|
56087
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] Pulitzer::CloneVersion !!!
|
56088
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] /Users/eric/.rvm/gems/ruby-2.3.0/bin/rspec
|
56089
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 4]]
|
56090
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36mPulitzer::ContentElement Load (0.0ms)[0m [1mSELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC[0m [["version_id", 2]]
|
56091
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35mPulitzer::ContentElementType Load (0.0ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
|
56092
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56093
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 7"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 1], ["created_at", "2016-07-05 17:34:47.008207"], ["updated_at", "2016-07-05 17:34:47.008207"]]
|
56094
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56095
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56096
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ?[0m [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.047742"], ["id", 4]]
|
56097
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56098
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 2]]
|
56099
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56100
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 8"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 2], ["created_at", "2016-07-05 17:34:47.014598"], ["updated_at", "2016-07-05 17:34:47.014598"]]
|
56101
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56102
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56103
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.052219"], ["id", 5]]
|
56104
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56105
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35mPulitzer::ContentElementType Load (0.0ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 3]]
|
56106
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56107
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 9"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 3], ["created_at", "2016-07-05 17:34:47.021913"], ["updated_at", "2016-07-05 17:34:47.021913"]]
|
56108
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56109
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56110
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36mSQL (0.0ms)[0m [1mUPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ?[0m [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.056600"], ["id", 6]]
|
56111
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56112
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36mPulitzer::FreeFormSection Load (0.0ms)[0m [1mSELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ?[0m [["version_id", 2]]
|
56113
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35mPulitzer::PostTag Load (0.0ms)[0m SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? [["version_id", 2]]
|
56114
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56115
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 0], ["updated_at", "2016-07-05 17:34:47.059058"], ["id", 3]]
|
56116
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56117
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] Performed Pulitzer::CloneVersionJob from Inline(default) in 21.72ms
|
56118
|
+
[1m[35mPulitzer::Post Load (0.1ms)[0m SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
|
56119
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1[0m [["id", 3]]
|
56120
|
+
[1m[35mPulitzer::Post Load (0.0ms)[0m SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
|
56121
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1[0m [["post_id", 1], ["status", 1]]
|
56122
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
56123
|
+
[1m[36mPulitzer::Version Load (0.1ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 0]]
|
56124
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
56125
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ?[0m [["version_id", 3]]
|
56126
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
56127
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56128
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56129
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56130
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56131
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.073654"], ["updated_at", "2016-07-05 17:34:47.073654"]]
|
56132
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56133
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56134
|
+
[1m[35mPulitzer::Post Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-6"]]
|
56135
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 6"], ["post_type_id", 1], ["slug", "winterfell-news-6"], ["created_at", "2016-07-05 17:34:47.076382"], ["updated_at", "2016-07-05 17:34:47.076382"]]
|
56136
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.078338"], ["updated_at", "2016-07-05 17:34:47.078338"]]
|
56137
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56138
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56139
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["post_id", 1], ["created_at", "2016-07-05 17:34:47.079888"], ["updated_at", "2016-07-05 17:34:47.079888"]]
|
56140
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56141
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56142
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 16' LIMIT 1
|
56143
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 16"], ["created_at", "2016-07-05 17:34:47.083091"], ["updated_at", "2016-07-05 17:34:47.083091"]]
|
56144
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56145
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56146
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 10"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 1], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.084663"], ["updated_at", "2016-07-05 17:34:47.084663"]]
|
56147
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56148
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56149
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 17' LIMIT 1[0m
|
56150
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 17"], ["created_at", "2016-07-05 17:34:47.087612"], ["updated_at", "2016-07-05 17:34:47.087612"]]
|
56151
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56152
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56153
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 11"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 2], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.089525"], ["updated_at", "2016-07-05 17:34:47.089525"]]
|
56154
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56155
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56156
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 18' LIMIT 1
|
56157
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 18"], ["created_at", "2016-07-05 17:34:47.092049"], ["updated_at", "2016-07-05 17:34:47.092049"]]
|
56158
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56159
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56160
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 12"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 3], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.093397"], ["updated_at", "2016-07-05 17:34:47.093397"]]
|
56161
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56162
|
+
[1m[35mPulitzer::Version Load (0.1ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
|
56163
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56164
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 1], ["updated_at", "2016-07-05 17:34:47.095689"], ["id", 2]]
|
56165
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56166
|
+
[1m[35mPulitzer::Tag Load (0.0ms)[0m SELECT "pulitzer_tags".* FROM "pulitzer_tags" INNER JOIN "pulitzer_post_tags" ON "pulitzer_tags"."id" = "pulitzer_post_tags"."label_id" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 2], ["label_type", "Pulitzer::Tag"]]
|
56167
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56168
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["status", 4], ["post_id", 1], ["created_at", "2016-07-05 17:34:47.098116"], ["updated_at", "2016-07-05 17:34:47.098116"]]
|
56169
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56170
|
+
[ActiveJob] Enqueued Pulitzer::CloneVersionJob (Job ID: c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6) to Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
|
56171
|
+
[ActiveJob] [1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 2]]
|
56172
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] Performing Pulitzer::CloneVersionJob from Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
|
56173
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36mPulitzer::Post Load (0.0ms)[0m [1mSELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1[0m [["id", 1]]
|
56174
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] Pulitzer::CloneVersion !!!
|
56175
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] /Users/eric/.rvm/gems/ruby-2.3.0/bin/rspec
|
56176
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 4]]
|
56177
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36mPulitzer::ContentElement Load (0.0ms)[0m [1mSELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC[0m [["version_id", 2]]
|
56178
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35mPulitzer::ContentElementType Load (0.0ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
|
56179
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56180
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 10"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 1], ["created_at", "2016-07-05 17:34:47.084663"], ["updated_at", "2016-07-05 17:34:47.084663"]]
|
56181
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56182
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56183
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ?[0m [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.105704"], ["id", 4]]
|
56184
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56185
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 2]]
|
56186
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56187
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 11"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 2], ["created_at", "2016-07-05 17:34:47.089525"], ["updated_at", "2016-07-05 17:34:47.089525"]]
|
56188
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56189
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56190
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.110194"], ["id", 5]]
|
56191
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56192
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35mPulitzer::ContentElementType Load (0.0ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 3]]
|
56193
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56194
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 12"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 3], ["created_at", "2016-07-05 17:34:47.093397"], ["updated_at", "2016-07-05 17:34:47.093397"]]
|
56195
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56196
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56197
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ?[0m [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.114503"], ["id", 6]]
|
56198
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56199
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36mPulitzer::FreeFormSection Load (0.0ms)[0m [1mSELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ?[0m [["version_id", 2]]
|
56200
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35mPulitzer::PostTag Load (0.0ms)[0m SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? [["version_id", 2]]
|
56201
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56202
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 0], ["updated_at", "2016-07-05 17:34:47.117837"], ["id", 3]]
|
56203
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56204
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] Performed Pulitzer::CloneVersionJob from Inline(default) in 21.12ms
|
56205
|
+
[1m[35mPulitzer::Post Load (0.1ms)[0m SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
|
56206
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1[0m [["id", 3]]
|
56207
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 2]]
|
56208
|
+
[1m[36mPulitzer::Post Load (0.0ms)[0m [1mSELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1[0m [["id", 1]]
|
56209
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
56210
|
+
[1m[36mPulitzer::Post Load (0.0ms)[0m [1mSELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1[0m [["id", 1]]
|
56211
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
|
56212
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56213
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 3], ["updated_at", "2016-07-05 17:34:47.125271"], ["id", 3]]
|
56214
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56215
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56216
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["status", 4], ["post_id", 1], ["created_at", "2016-07-05 17:34:47.127697"], ["updated_at", "2016-07-05 17:34:47.127697"]]
|
56217
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56218
|
+
[ActiveJob] Enqueued Pulitzer::CloneVersionJob (Job ID: a931436b-6a45-4e03-8186-b90001533b4d) to Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
|
56219
|
+
[ActiveJob] [1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1[0m [["id", 2]]
|
56220
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] Performing Pulitzer::CloneVersionJob from Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
|
56221
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35mPulitzer::Post Load (0.0ms)[0m SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
|
56222
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] Pulitzer::CloneVersion !!!
|
56223
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] /Users/eric/.rvm/gems/ruby-2.3.0/bin/rspec
|
56224
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 4]]
|
56225
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35mPulitzer::ContentElement Load (0.1ms)[0m SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 2]]
|
56226
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
56227
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56228
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 10"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 1], ["created_at", "2016-07-05 17:34:47.084663"], ["updated_at", "2016-07-05 17:34:47.084663"]]
|
56229
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56230
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56231
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["version_id", 4], ["updated_at", "2016-07-05 17:34:47.136172"], ["id", 7]]
|
56232
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56233
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35mPulitzer::ContentElementType Load (0.0ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 2]]
|
56234
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56235
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 11"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 2], ["created_at", "2016-07-05 17:34:47.089525"], ["updated_at", "2016-07-05 17:34:47.089525"]]
|
56236
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56237
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56238
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ?[0m [["version_id", 4], ["updated_at", "2016-07-05 17:34:47.141077"], ["id", 8]]
|
56239
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56240
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 3]]
|
56241
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56242
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 12"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 3], ["created_at", "2016-07-05 17:34:47.093397"], ["updated_at", "2016-07-05 17:34:47.093397"]]
|
56243
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56244
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56245
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["version_id", 4], ["updated_at", "2016-07-05 17:34:47.145739"], ["id", 9]]
|
56246
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56247
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35mPulitzer::FreeFormSection Load (0.0ms)[0m SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 2]]
|
56248
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36mPulitzer::PostTag Load (0.0ms)[0m [1mSELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ?[0m [["version_id", 2]]
|
56249
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56250
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[36mSQL (0.0ms)[0m [1mUPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ?[0m [["status", 0], ["updated_at", "2016-07-05 17:34:47.148074"], ["id", 4]]
|
56251
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56252
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] Performed Pulitzer::CloneVersionJob from Inline(default) in 21.56ms
|
56253
|
+
[1m[36mPulitzer::Version Load (0.1ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1[0m [["id", 3]]
|
56254
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
56255
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 0]]
|
56256
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
56257
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ?[0m [["version_id", 4]]
|
56258
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
56259
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56260
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56261
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56262
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56263
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.158828"], ["updated_at", "2016-07-05 17:34:47.158828"]]
|
56264
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56265
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56266
|
+
[1m[35mPulitzer::Post Exists (0.0ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-7"]]
|
56267
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 7"], ["post_type_id", 1], ["slug", "winterfell-news-7"], ["created_at", "2016-07-05 17:34:47.161206"], ["updated_at", "2016-07-05 17:34:47.161206"]]
|
56268
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.162829"], ["updated_at", "2016-07-05 17:34:47.162829"]]
|
56269
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56270
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56271
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["post_id", 1], ["created_at", "2016-07-05 17:34:47.164108"], ["updated_at", "2016-07-05 17:34:47.164108"]]
|
56272
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56273
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56274
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 19' LIMIT 1
|
56275
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 19"], ["created_at", "2016-07-05 17:34:47.168330"], ["updated_at", "2016-07-05 17:34:47.168330"]]
|
56276
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56277
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56278
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 13"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 1], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.170293"], ["updated_at", "2016-07-05 17:34:47.170293"]]
|
56279
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56280
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56281
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 20' LIMIT 1[0m
|
56282
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 20"], ["created_at", "2016-07-05 17:34:47.173339"], ["updated_at", "2016-07-05 17:34:47.173339"]]
|
56283
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56284
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56285
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 14"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 2], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.175027"], ["updated_at", "2016-07-05 17:34:47.175027"]]
|
56286
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56287
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56288
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 21' LIMIT 1
|
56289
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 21"], ["created_at", "2016-07-05 17:34:47.186827"], ["updated_at", "2016-07-05 17:34:47.186827"]]
|
56290
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56291
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56292
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 15"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 3], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.188574"], ["updated_at", "2016-07-05 17:34:47.188574"]]
|
56293
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56294
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
|
56295
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56296
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 1], ["updated_at", "2016-07-05 17:34:47.190735"], ["id", 2]]
|
56297
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56298
|
+
[1m[35mPulitzer::Tag Load (0.1ms)[0m SELECT "pulitzer_tags".* FROM "pulitzer_tags" INNER JOIN "pulitzer_post_tags" ON "pulitzer_tags"."id" = "pulitzer_post_tags"."label_id" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 2], ["label_type", "Pulitzer::Tag"]]
|
56299
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56300
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["status", 4], ["post_id", 1], ["created_at", "2016-07-05 17:34:47.194816"], ["updated_at", "2016-07-05 17:34:47.194816"]]
|
56301
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56302
|
+
[ActiveJob] Enqueued Pulitzer::CloneVersionJob (Job ID: 5bce1acb-d2b4-4143-99c1-8c9ec2465a2a) to Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
|
56303
|
+
[ActiveJob] [1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 2]]
|
56304
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] Performing Pulitzer::CloneVersionJob from Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
|
56305
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36mPulitzer::Post Load (0.0ms)[0m [1mSELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1[0m [["id", 1]]
|
56306
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] Pulitzer::CloneVersion !!!
|
56307
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] /Users/eric/.rvm/gems/ruby-2.3.0/bin/rspec
|
56308
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35mPulitzer::Version Load (0.1ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 4]]
|
56309
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36mPulitzer::ContentElement Load (0.1ms)[0m [1mSELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC[0m [["version_id", 2]]
|
56310
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35mPulitzer::ContentElementType Load (0.0ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
|
56311
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56312
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 13"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 1], ["created_at", "2016-07-05 17:34:47.170293"], ["updated_at", "2016-07-05 17:34:47.170293"]]
|
56313
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56314
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56315
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ?[0m [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.204694"], ["id", 4]]
|
56316
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56317
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 2]]
|
56318
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56319
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 14"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 2], ["created_at", "2016-07-05 17:34:47.175027"], ["updated_at", "2016-07-05 17:34:47.175027"]]
|
56320
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56321
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56322
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35mSQL (0.0ms)[0m UPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.209830"], ["id", 5]]
|
56323
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56324
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35mPulitzer::ContentElementType Load (0.0ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 3]]
|
56325
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56326
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 15"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 3], ["created_at", "2016-07-05 17:34:47.188574"], ["updated_at", "2016-07-05 17:34:47.188574"]]
|
56327
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56328
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56329
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ?[0m [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.214596"], ["id", 6]]
|
56330
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56331
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36mPulitzer::FreeFormSection Load (0.0ms)[0m [1mSELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ?[0m [["version_id", 2]]
|
56332
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35mPulitzer::PostTag Load (0.0ms)[0m SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? [["version_id", 2]]
|
56333
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56334
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[35mSQL (0.0ms)[0m UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 0], ["updated_at", "2016-07-05 17:34:47.217529"], ["id", 3]]
|
56335
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56336
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] Performed Pulitzer::CloneVersionJob from Inline(default) in 24.43ms
|
56337
|
+
[1m[35mPulitzer::Post Load (0.1ms)[0m SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
|
56338
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1[0m [["id", 3]]
|
56339
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 2]]
|
56340
|
+
[1m[36mPulitzer::Post Load (0.0ms)[0m [1mSELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1[0m [["id", 1]]
|
56341
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
|
56342
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56343
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 3], ["updated_at", "2016-07-05 17:34:47.224365"], ["id", 2]]
|
56344
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56345
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
56346
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1[0m [["id", 2]]
|
56347
|
+
[1m[35mPulitzer::Post Load (0.0ms)[0m SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
|
56348
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 0]]
|
56349
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]
|
56350
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 0]]
|
56351
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? [["version_id", 3]]
|
56352
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
56353
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56354
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56355
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56356
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56357
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The North Remembers' LIMIT 1
|
56358
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The North Remembers"], ["created_at", "2016-07-05 17:34:47.234553"], ["updated_at", "2016-07-05 17:34:47.234553"]]
|
56359
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56360
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56361
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.237228"], ["updated_at", "2016-07-05 17:34:47.237228"]]
|
56362
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56363
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56364
|
+
[1m[36mPulitzer::Post Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1[0m [["slug", "winterfell-news-8"]]
|
56365
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Winterfell news 8"], ["post_type_id", 1], ["slug", "winterfell-news-8"], ["created_at", "2016-07-05 17:34:47.239970"], ["updated_at", "2016-07-05 17:34:47.239970"]]
|
56366
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["post_id", 1], ["created_at", "2016-07-05 17:34:47.242083"], ["updated_at", "2016-07-05 17:34:47.242083"]]
|
56367
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56368
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56369
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.243634"], ["updated_at", "2016-07-05 17:34:47.243634"]]
|
56370
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56371
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56372
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 22' LIMIT 1[0m
|
56373
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 22"], ["created_at", "2016-07-05 17:34:47.246599"], ["updated_at", "2016-07-05 17:34:47.246599"]]
|
56374
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56375
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56376
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 16"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 1], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.248258"], ["updated_at", "2016-07-05 17:34:47.248258"]]
|
56377
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56378
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56379
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 23' LIMIT 1
|
56380
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 23"], ["created_at", "2016-07-05 17:34:47.251458"], ["updated_at", "2016-07-05 17:34:47.251458"]]
|
56381
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56382
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56383
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 17"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 2], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.253099"], ["updated_at", "2016-07-05 17:34:47.253099"]]
|
56384
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56385
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56386
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 24' LIMIT 1[0m
|
56387
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 24"], ["created_at", "2016-07-05 17:34:47.256011"], ["updated_at", "2016-07-05 17:34:47.256011"]]
|
56388
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56389
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56390
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 18"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["content_element_type_id", 3], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.257415"], ["updated_at", "2016-07-05 17:34:47.257415"]]
|
56391
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56392
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56393
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_post_tags" ("label_id", "label_type", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["label_id", 1], ["label_type", "Pulitzer::Tag"], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.264273"], ["updated_at", "2016-07-05 17:34:47.264273"]]
|
56394
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56395
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56396
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The South Forgets' LIMIT 1[0m
|
56397
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The South Forgets"], ["created_at", "2016-07-05 17:34:47.267096"], ["updated_at", "2016-07-05 17:34:47.267096"]]
|
56398
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56399
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56400
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_post_tags" ("label_id", "label_type", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["label_id", 2], ["label_type", "Pulitzer::Tag"], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.269742"], ["updated_at", "2016-07-05 17:34:47.269742"]]
|
56401
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56402
|
+
[1m[36mPulitzer::Tag Load (0.1ms)[0m [1mSELECT "pulitzer_tags".* FROM "pulitzer_tags" INNER JOIN "pulitzer_post_tags" ON "pulitzer_tags"."id" = "pulitzer_post_tags"."label_id" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ?[0m [["version_id", 2], ["label_type", "Pulitzer::Tag"]]
|
56403
|
+
[1m[35mPulitzer::Version Load (0.0ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
|
56404
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56405
|
+
[1m[35mSQL (0.0ms)[0m UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 1], ["updated_at", "2016-07-05 17:34:47.274831"], ["id", 2]]
|
56406
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56407
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56408
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["status", 4], ["post_id", 1], ["created_at", "2016-07-05 17:34:47.276749"], ["updated_at", "2016-07-05 17:34:47.276749"]]
|
56409
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56410
|
+
[ActiveJob] Enqueued Pulitzer::CloneVersionJob (Job ID: c044d505-1cd2-4a44-9770-340fc0c5a4b9) to Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
|
56411
|
+
[ActiveJob] [1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1[0m [["id", 2]]
|
56412
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] Performing Pulitzer::CloneVersionJob from Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
|
56413
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35mPulitzer::Post Load (0.0ms)[0m SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
|
56414
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] Pulitzer::CloneVersion !!!
|
56415
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] /Users/eric/.rvm/gems/ruby-2.3.0/bin/rspec
|
56416
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1[0m [["post_id", 1], ["status", 4]]
|
56417
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35mPulitzer::ContentElement Load (0.0ms)[0m SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 2]]
|
56418
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 1]]
|
56419
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56420
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 16"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 1], ["created_at", "2016-07-05 17:34:47.248258"], ["updated_at", "2016-07-05 17:34:47.248258"]]
|
56421
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56422
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56423
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.284834"], ["id", 4]]
|
56424
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56425
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35mPulitzer::ContentElementType Load (0.1ms)[0m SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 2]]
|
56426
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56427
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "Slide 1 content element 17"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 2], ["created_at", "2016-07-05 17:34:47.253099"], ["updated_at", "2016-07-05 17:34:47.253099"]]
|
56428
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56429
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56430
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ?[0m [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.290217"], ["id", 5]]
|
56431
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56432
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36mPulitzer::ContentElementType Load (0.0ms)[0m [1mSELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1[0m [["id", 3]]
|
56433
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56434
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 18"], ["body", "I pledge my life and honor to the Night's Watch, for this night and all the nights to come"], ["image", nil], ["content_element_type_id", 3], ["created_at", "2016-07-05 17:34:47.257415"], ["updated_at", "2016-07-05 17:34:47.257415"]]
|
56435
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56436
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56437
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35mSQL (0.0ms)[0m UPDATE "pulitzer_content_elements" SET "version_id" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["version_id", 3], ["updated_at", "2016-07-05 17:34:47.294379"], ["id", 6]]
|
56438
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56439
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35mPulitzer::FreeFormSection Load (0.0ms)[0m SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 2]]
|
56440
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36mPulitzer::PostTag Load (0.1ms)[0m [1mSELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ?[0m [["version_id", 2]]
|
56441
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56442
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_post_tags" ("label_id", "label_type", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["label_id", 1], ["label_type", "Pulitzer::Tag"], ["version_id", 3], ["created_at", "2016-07-05 17:34:47.298066"], ["updated_at", "2016-07-05 17:34:47.298066"]]
|
56443
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56444
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56445
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_post_tags" ("label_id", "label_type", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["label_id", 2], ["label_type", "Pulitzer::Tag"], ["version_id", 3], ["created_at", "2016-07-05 17:34:47.299839"], ["updated_at", "2016-07-05 17:34:47.299839"]]
|
56446
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56447
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56448
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[36mSQL (0.0ms)[0m [1mUPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ?[0m [["status", 0], ["updated_at", "2016-07-05 17:34:47.301237"], ["id", 3]]
|
56449
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] [1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56450
|
+
[ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] Performed Pulitzer::CloneVersionJob from Inline(default) in 26.6ms
|
56451
|
+
[1m[36mPulitzer::Post Load (0.1ms)[0m [1mSELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1[0m [["id", 1]]
|
56452
|
+
[1m[35mPulitzer::Version Load (0.1ms)[0m SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 3]]
|
56453
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
56454
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56455
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56456
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56457
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
56458
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56459
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56460
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56461
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56462
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 25' LIMIT 1
|
56463
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 25"], ["created_at", "2016-07-05 17:34:47.314197"], ["updated_at", "2016-07-05 17:34:47.314197"]]
|
56464
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56465
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
56466
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56467
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56468
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56469
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
56470
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56471
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56472
|
+
[1m[35m (0.2ms)[0m begin transaction
|
56473
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
56474
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56475
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56476
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56477
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
56478
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56479
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
56480
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56481
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
56482
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56483
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56484
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56485
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56486
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 26' LIMIT 1
|
56487
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 26"], ["created_at", "2016-07-05 17:34:47.325031"], ["updated_at", "2016-07-05 17:34:47.325031"]]
|
56488
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56489
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
56490
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56491
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56492
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56493
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56494
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 27' LIMIT 1
|
56495
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 27"], ["created_at", "2016-07-05 17:34:47.330118"], ["updated_at", "2016-07-05 17:34:47.330118"]]
|
56496
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56497
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
56498
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56499
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56500
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56501
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56502
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 28' LIMIT 1
|
56503
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 28"], ["created_at", "2016-07-05 17:34:47.334856"], ["updated_at", "2016-07-05 17:34:47.334856"]]
|
56504
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56505
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
56506
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56507
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56508
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56509
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56510
|
+
[1m[35mPulitzer::ContentElementType Exists (0.2ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Video' LIMIT 1
|
56511
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Video"], ["created_at", "2016-07-05 17:34:47.340103"], ["updated_at", "2016-07-05 17:34:47.340103"]]
|
56512
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56513
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56514
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["label", "Slide 1 content element 23"], ["body", "https://www.youtube.com/watch?v=yLisM2KPDIA"], ["content_element_type_id", 1], ["created_at", "2016-07-05 17:34:47.341875"], ["updated_at", "2016-07-05 17:34:47.341875"]]
|
56515
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56516
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
56517
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56518
|
+
[1m[35m (0.1ms)[0m commit transaction
|
56519
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56520
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56521
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Video' LIMIT 1[0m
|
56522
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Video"], ["created_at", "2016-07-05 17:34:47.349761"], ["updated_at", "2016-07-05 17:34:47.349761"]]
|
56523
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56524
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56525
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["label", "Slide 1 content element 24"], ["body", "https://www.youtube.com/watch?v=yLisM2KPDIA"], ["content_element_type_id", 1], ["created_at", "2016-07-05 17:34:47.351510"], ["updated_at", "2016-07-05 17:34:47.351510"]]
|
56526
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56527
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
56528
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56529
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56530
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56531
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56532
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 29' LIMIT 1
|
56533
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 29"], ["created_at", "2016-07-05 17:34:47.357035"], ["updated_at", "2016-07-05 17:34:47.357035"]]
|
56534
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56535
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
56536
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56537
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56538
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56539
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56540
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 30' LIMIT 1
|
56541
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Text 30"], ["created_at", "2016-07-05 17:34:47.361966"], ["updated_at", "2016-07-05 17:34:47.361966"]]
|
56542
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56543
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
56544
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56545
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56546
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56547
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56548
|
+
[1m[35mPulitzer::ContentElementType Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Image' LIMIT 1
|
56549
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "Image"], ["created_at", "2016-07-05 17:34:47.367627"], ["updated_at", "2016-07-05 17:34:47.367627"]]
|
56550
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56551
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
56552
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56553
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56554
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56555
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56556
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.544483"], ["updated_at", "2016-07-05 17:34:47.544483"]]
|
56557
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56558
|
+
[1m[35mPulitzer::Post Exists (0.0ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-9"]]
|
56559
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
56560
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56561
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56562
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56563
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
56564
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56565
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
56566
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56567
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
56568
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56569
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56570
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56571
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56572
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.561212"], ["updated_at", "2016-07-05 17:34:47.561212"]]
|
56573
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56574
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56575
|
+
[1m[36mPulitzer::Post Exists (0.0ms)[0m [1mSELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1[0m [["slug", "winterfell-news-10"]]
|
56576
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Winterfell news 10"], ["post_type_id", 1], ["slug", "winterfell-news-10"], ["created_at", "2016-07-05 17:34:47.564264"], ["updated_at", "2016-07-05 17:34:47.564264"]]
|
56577
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["post_id", 1], ["created_at", "2016-07-05 17:34:47.569362"], ["updated_at", "2016-07-05 17:34:47.569362"]]
|
56578
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
56579
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56580
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.574657"], ["updated_at", "2016-07-05 17:34:47.574657"]]
|
56581
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56582
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56583
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["status", 1], ["post_id", 1], ["created_at", "2016-07-05 17:34:47.576804"], ["updated_at", "2016-07-05 17:34:47.576804"]]
|
56584
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56585
|
+
[1m[36mPulitzer::Version Load (0.0ms)[0m [1mSELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1[0m [["post_id", 1], ["status", 1]]
|
56586
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
56587
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56588
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56589
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56590
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56591
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.584084"], ["updated_at", "2016-07-05 17:34:47.584084"]]
|
56592
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56593
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56594
|
+
[1m[35mPulitzer::Post Exists (0.0ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-11"]]
|
56595
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 11"], ["post_type_id", 1], ["slug", "winterfell-news-11"], ["created_at", "2016-07-05 17:34:47.587191"], ["updated_at", "2016-07-05 17:34:47.587191"]]
|
56596
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.589493"], ["updated_at", "2016-07-05 17:34:47.589493"]]
|
56597
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56598
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
56599
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56600
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56601
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56602
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56603
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.594933"], ["updated_at", "2016-07-05 17:34:47.594933"]]
|
56604
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56605
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56606
|
+
[1m[35mPulitzer::Post Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-12"]]
|
56607
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 12"], ["post_type_id", 1], ["slug", "winterfell-news-12"], ["created_at", "2016-07-05 17:34:47.598880"], ["updated_at", "2016-07-05 17:34:47.598880"]]
|
56608
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.601619"], ["updated_at", "2016-07-05 17:34:47.601619"]]
|
56609
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56610
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56611
|
+
[1m[36mPulitzer::Post Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" != 1) AND "pulitzer_posts"."slug" = ? LIMIT 1[0m [["slug", "the-new-king-in-the-north"]]
|
56612
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "pulitzer_posts" SET "title" = ?, "slug" = ?, "updated_at" = ? WHERE "pulitzer_posts"."id" = ? [["title", "The new King in the North"], ["slug", "the-new-king-in-the-north"], ["updated_at", "2016-07-05 17:34:47.604834"], ["id", 1]]
|
56613
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56614
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
56615
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56616
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56617
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56618
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56619
|
+
[1m[36mPulitzer::Tag Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 25' LIMIT 1[0m
|
56620
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 25"], ["created_at", "2016-07-05 17:34:47.610361"], ["updated_at", "2016-07-05 17:34:47.610361"]]
|
56621
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56622
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56623
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.613662"], ["updated_at", "2016-07-05 17:34:47.613662"]]
|
56624
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56625
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56626
|
+
[1m[35mPulitzer::Post Exists (0.0ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-13"]]
|
56627
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 13"], ["post_type_id", 1], ["slug", "winterfell-news-13"], ["created_at", "2016-07-05 17:34:47.616348"], ["updated_at", "2016-07-05 17:34:47.616348"]]
|
56628
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.618232"], ["updated_at", "2016-07-05 17:34:47.618232"]]
|
56629
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56630
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56631
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["post_id", 1], ["created_at", "2016-07-05 17:34:47.619880"], ["updated_at", "2016-07-05 17:34:47.619880"]]
|
56632
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56633
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
56634
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56635
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56636
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56637
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
56638
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56639
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56640
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56641
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
56642
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56643
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56644
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56645
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
56646
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56647
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56648
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56649
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
56650
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56651
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56652
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56653
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
56654
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56655
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56656
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56657
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56658
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.642087"], ["updated_at", "2016-07-05 17:34:47.642087"]]
|
56659
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56660
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56661
|
+
[1m[36mPulitzer::ContentElementType Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 31' LIMIT 1[0m
|
56662
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 31"], ["created_at", "2016-07-05 17:34:47.646364"], ["updated_at", "2016-07-05 17:34:47.646364"]]
|
56663
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56664
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
56665
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56666
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56667
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56668
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56669
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56670
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56671
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56672
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56673
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56674
|
+
[1m[35m (0.1ms)[0m commit transaction
|
56675
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56676
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56677
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56678
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56679
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56680
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56681
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56682
|
+
[1m[35m (0.1ms)[0m commit transaction
|
56683
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56684
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
56685
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56686
|
+
[1m[35m (0.1ms)[0m commit transaction
|
56687
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56688
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
56689
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56690
|
+
[1m[35m (0.1ms)[0m commit transaction
|
56691
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56692
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
56693
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56694
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56695
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56696
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56697
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56698
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56699
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56700
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
56701
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56702
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56703
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56704
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56705
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56706
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56707
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56708
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56709
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56710
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56711
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56712
|
+
[1m[35mPulitzer::Tag Exists (0.2ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 26' LIMIT 1
|
56713
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
56714
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56715
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56716
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56717
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" IS NULL LIMIT 1[0m
|
56718
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
56719
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56720
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56721
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56722
|
+
[1m[35mPulitzer::Tag Load (0.2ms)[0m SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."id" ASC LIMIT 1
|
56723
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56724
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "a"], ["created_at", "2016-07-05 17:34:47.694857"], ["updated_at", "2016-07-05 17:34:47.694857"]]
|
56725
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56726
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'a' LIMIT 1
|
56727
|
+
[1m[36mPulitzer::Tag Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'A' LIMIT 1[0m
|
56728
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
56729
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56730
|
+
[1m[35m (0.1ms)[0m commit transaction
|
56731
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56732
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56733
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56734
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56735
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56736
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56737
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56738
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56739
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56740
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56741
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 27' LIMIT 1[0m
|
56742
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "The north 27"], ["hierarchical", "t"], ["created_at", "2016-07-05 17:34:47.711932"], ["updated_at", "2016-07-05 17:34:47.711932"]]
|
56743
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56744
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
56745
|
+
[1m[36mPulitzer::Tag Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 28' LIMIT 1[0m
|
56746
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 28"], ["created_at", "2016-07-05 17:34:47.717150"], ["updated_at", "2016-07-05 17:34:47.717150"]]
|
56747
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56748
|
+
[1m[35mPulitzer::Tag Load (0.1ms)[0m SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't'
|
56749
|
+
[1m[36mPulitzer::Tag Load (0.1ms)[0m [1mSELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't'[0m
|
56750
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
56751
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56752
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56753
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56754
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56755
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.725706"], ["updated_at", "2016-07-05 17:34:47.725706"]]
|
56756
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56757
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56758
|
+
[1m[35mPulitzer::Post Exists (0.0ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-14"]]
|
56759
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 14"], ["post_type_id", 1], ["slug", "winterfell-news-14"], ["created_at", "2016-07-05 17:34:47.728651"], ["updated_at", "2016-07-05 17:34:47.728651"]]
|
56760
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.730870"], ["updated_at", "2016-07-05 17:34:47.730870"]]
|
56761
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56762
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56763
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["status", 1], ["post_id", 1], ["created_at", "2016-07-05 17:34:47.733485"], ["updated_at", "2016-07-05 17:34:47.733485"]]
|
56764
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56765
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56766
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 29' LIMIT 1
|
56767
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 29"], ["created_at", "2016-07-05 17:34:47.735552"], ["updated_at", "2016-07-05 17:34:47.735552"]]
|
56768
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56769
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56770
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_post_tags" ("label_id", "label_type", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["label_id", 1], ["label_type", "Pulitzer::Tag"], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.737952"], ["updated_at", "2016-07-05 17:34:47.737952"]]
|
56771
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56772
|
+
[1m[35mPulitzer::Post Exists (0.2ms)[0m SELECT "pulitzer_posts".* FROM "pulitzer_posts" INNER JOIN "pulitzer_versions" ON "pulitzer_posts"."id" = "pulitzer_versions"."post_id" INNER JOIN "pulitzer_post_tags" ON "pulitzer_versions"."id" = "pulitzer_post_tags"."version_id" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? AND "pulitzer_posts"."id" = ? [["label_id", 1], ["label_type", "Pulitzer::Tag"], ["id", 1]]
|
56773
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
56774
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56775
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56776
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56777
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56778
|
+
[1m[35mPulitzer::Tag Exists (0.2ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 30' LIMIT 1
|
56779
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "The north 30"], ["hierarchical", "t"], ["created_at", "2016-07-05 17:34:47.746115"], ["updated_at", "2016-07-05 17:34:47.746115"]]
|
56780
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56781
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56782
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 31' LIMIT 1
|
56783
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 31"], ["created_at", "2016-07-05 17:34:47.749479"], ["updated_at", "2016-07-05 17:34:47.749479"]]
|
56784
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56785
|
+
[1m[36mPulitzer::Tag Load (0.1ms)[0m [1mSELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f'[0m
|
56786
|
+
[1m[35mPulitzer::Tag Load (0.1ms)[0m SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f'
|
56787
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
56788
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56789
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56790
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56791
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56792
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 32' LIMIT 1
|
56793
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 32"], ["created_at", "2016-07-05 17:34:47.756047"], ["updated_at", "2016-07-05 17:34:47.756047"]]
|
56794
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56795
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56796
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 33' LIMIT 1
|
56797
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "The north 33"], ["parent_id", 1], ["created_at", "2016-07-05 17:34:47.758583"], ["updated_at", "2016-07-05 17:34:47.758583"]]
|
56798
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_tags" SET "updated_at" = '2016-07-05 17:34:47.759680' WHERE "pulitzer_tags"."id" = ? [["id", 1]]
|
56799
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56800
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56801
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 34' LIMIT 1[0m
|
56802
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_tags" ("name", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "The north 34"], ["parent_id", 1], ["created_at", "2016-07-05 17:34:47.762005"], ["updated_at", "2016-07-05 17:34:47.762005"]]
|
56803
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "pulitzer_tags" SET "updated_at" = '2016-07-05 17:34:47.762905' WHERE "pulitzer_tags"."id" = ?[0m [["id", 1]]
|
56804
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56805
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? AND "pulitzer_tags"."id" = ?[0m [["parent_id", 1], ["id", 2]]
|
56806
|
+
[1m[35mPulitzer::Tag Exists (0.0ms)[0m SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? AND "pulitzer_tags"."id" = ? [["parent_id", 1], ["id", 3]]
|
56807
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
56808
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56809
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56810
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56811
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56812
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 35' LIMIT 1
|
56813
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "The north 35"], ["hierarchical", "t"], ["created_at", "2016-07-05 17:34:47.769962"], ["updated_at", "2016-07-05 17:34:47.769962"]]
|
56814
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56815
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56816
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 36' LIMIT 1
|
56817
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 36"], ["created_at", "2016-07-05 17:34:47.772441"], ["updated_at", "2016-07-05 17:34:47.772441"]]
|
56818
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56819
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56820
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 37' LIMIT 1
|
56821
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "The north 37"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-07-05 17:34:47.775020"], ["updated_at", "2016-07-05 17:34:47.775020"]]
|
56822
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_tags" SET "updated_at" = '2016-07-05 17:34:47.775851' WHERE "pulitzer_tags"."id" = ? [["id", 1]]
|
56823
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56824
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
56825
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56826
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56827
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56828
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56829
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 38' LIMIT 1[0m
|
56830
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "The north 38"], ["hierarchical", "t"], ["created_at", "2016-07-05 17:34:47.780253"], ["updated_at", "2016-07-05 17:34:47.780253"]]
|
56831
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56832
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56833
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 39' LIMIT 1[0m
|
56834
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 39"], ["created_at", "2016-07-05 17:34:47.783086"], ["updated_at", "2016-07-05 17:34:47.783086"]]
|
56835
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56836
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56837
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 40' LIMIT 1[0m
|
56838
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "The north 40"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-07-05 17:34:47.786070"], ["updated_at", "2016-07-05 17:34:47.786070"]]
|
56839
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "pulitzer_tags" SET "updated_at" = '2016-07-05 17:34:47.786951' WHERE "pulitzer_tags"."id" = ?[0m [["id", 1]]
|
56840
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56841
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
56842
|
+
[1m[35m (0.1ms)[0m begin transaction
|
56843
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
56844
|
+
[1m[35m (0.0ms)[0m begin transaction
|
56845
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56846
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 41' LIMIT 1
|
56847
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "The north 41"], ["hierarchical", "t"], ["created_at", "2016-07-05 17:34:47.792105"], ["updated_at", "2016-07-05 17:34:47.792105"]]
|
56848
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
56849
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56850
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 42' LIMIT 1
|
56851
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["name", "The north 42"], ["created_at", "2016-07-05 17:34:47.794469"], ["updated_at", "2016-07-05 17:34:47.794469"]]
|
56852
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56853
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56854
|
+
[1m[35mPulitzer::Tag Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 43' LIMIT 1
|
56855
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["name", "The north 43"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-07-05 17:34:47.797478"], ["updated_at", "2016-07-05 17:34:47.797478"]]
|
56856
|
+
[1m[35mSQL (0.1ms)[0m UPDATE "pulitzer_tags" SET "updated_at" = '2016-07-05 17:34:47.798343' WHERE "pulitzer_tags"."id" = ? [["id", 1]]
|
56857
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56858
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
56859
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56860
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56861
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56862
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
56863
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.803793"], ["updated_at", "2016-07-05 17:34:47.803793"]]
|
56864
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56865
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
56866
|
+
[1m[35mPulitzer::Post Exists (0.1ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-15"]]
|
56867
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 15"], ["post_type_id", 1], ["slug", "winterfell-news-15"], ["created_at", "2016-07-05 17:34:47.807584"], ["updated_at", "2016-07-05 17:34:47.807584"]]
|
56868
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.809778"], ["updated_at", "2016-07-05 17:34:47.809778"]]
|
56869
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56870
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
56871
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56872
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56873
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56874
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
56875
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56876
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56877
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56878
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
56879
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56880
|
+
[1m[35m (0.1ms)[0m commit transaction
|
56881
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56882
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56883
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56884
|
+
[1m[35m (0.1ms)[0m commit transaction
|
56885
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56886
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
56887
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56888
|
+
[1m[35m (0.1ms)[0m commit transaction
|
56889
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56890
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
56891
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56892
|
+
[1m[35m (0.0ms)[0m commit transaction
|
56893
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56894
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
56895
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56896
|
+
[1m[35m (0.1ms)[0m commit transaction
|
56897
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56898
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56899
|
+
[1m[36mPulitzer::Tag Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 44' LIMIT 1[0m
|
56900
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 44"], ["created_at", "2016-07-05 17:34:47.830517"], ["updated_at", "2016-07-05 17:34:47.830517"]]
|
56901
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56902
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56903
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["name", "Winterfell news 1"], ["plural", "f"], ["created_at", "2016-07-05 17:34:47.834741"], ["updated_at", "2016-07-05 17:34:47.834741"]]
|
56904
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56905
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56906
|
+
[1m[35mPulitzer::Post Exists (0.0ms)[0m SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-16"]]
|
56907
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["title", "Winterfell news 16"], ["post_type_id", 1], ["slug", "winterfell-news-16"], ["created_at", "2016-07-05 17:34:47.838098"], ["updated_at", "2016-07-05 17:34:47.838098"]]
|
56908
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.839568"], ["updated_at", "2016-07-05 17:34:47.839568"]]
|
56909
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56910
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
56911
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["post_id", 1], ["created_at", "2016-07-05 17:34:47.841872"], ["updated_at", "2016-07-05 17:34:47.841872"]]
|
56912
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
56913
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
56914
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "pulitzer_post_tags" ("label_id", "label_type", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["label_id", 1], ["label_type", "Pulitzer::Tag"], ["version_id", 2], ["created_at", "2016-07-05 17:34:47.844346"], ["updated_at", "2016-07-05 17:34:47.844346"]]
|
56915
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
56916
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 2], ["label_type", "Pulitzer::Tag"]]
|
56917
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? AND "pulitzer_post_tags"."label_id" = ?[0m [["version_id", 2], ["label_type", "Pulitzer::Tag"], ["label_id", 1]]
|
56918
|
+
[1m[35mPulitzer::PostTag Load (0.1ms)[0m SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 2], ["label_type", "Pulitzer::Tag"]]
|
56919
|
+
[1m[36mPulitzer::Tag Load (0.0ms)[0m [1mSELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1[0m [["id", 1]]
|
56920
|
+
[1m[35m (0.8ms)[0m rollback transaction
|