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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 360eaeb2c8f4bcac11c3d82ef0a50e9c4e99c638
4
- data.tar.gz: ed16e77f203e19643949a826815cb136d09b4195
3
+ metadata.gz: 0c1573e13bef24dd60906a293039368a6ebb93d6
4
+ data.tar.gz: 0db8a0db0b520a979f249f9a260dff820bc0b214
5
5
  SHA512:
6
- metadata.gz: d222161e37a3d82d1a5a4f1c45cf5a69bc2a97794af248a56045be5ecae0214ed7ce9bedef3d34f6d1b3084502226b0c29ef7dc3c3c55623ba33900a736c4865
7
- data.tar.gz: 3153a24cba105ba8db89ebaf8502660e34fb87bddb85c0df349ea7fe11ad95115f56e5f76bbb64e452ec4b24a3ca2d8100bd5e1536c96401e6d226ea0c39b737
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
@@ -1,3 +1,3 @@
1
1
  module Pulitzer
2
- VERSION = '0.4.11'
2
+ VERSION = '0.4.12'
3
3
  end
Binary file
@@ -54950,3 +54950,1971 @@ Pulitzer::CloneVersion !!!
54950
54950
  Pulitzer::PostTag Load (0.1ms) 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"]]
54951
54951
  Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
54952
54952
   (0.5ms) rollback transaction
54953
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
54954
+  (1.0ms) 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) 
54955
+  (1.2ms) 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
+  (0.9ms) CREATE TABLE "pulitzer_free_form_section_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar) 
54957
+  (1.0ms) 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
+  (0.8ms) CREATE TABLE "pulitzer_layouts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar) 
54959
+  (0.8ms) 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
+  (0.8ms) 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) 
54961
+  (0.9ms) 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
+  (0.8ms) 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, "kind" integer DEFAULT 0) 
54963
+  (0.7ms) 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
+  (0.1ms) select sqlite_version(*)
54965
+  (1.1ms) CREATE UNIQUE INDEX "index_pulitzer_posts_on_slug" ON "pulitzer_posts" ("slug")
54966
+  (1.0ms) CREATE 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) 
54967
+  (0.8ms) CREATE INDEX "index_pulitzer_tags_on_hierarchical" ON "pulitzer_tags" ("hierarchical")
54968
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
54969
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
54970
+  (0.1ms) SELECT version FROM "schema_migrations"
54971
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160609214139')
54972
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
54973
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
54974
+ Migrating to CreatePulitzerPostTypes (20150618224344)
54975
+  (0.1ms) begin transaction
54976
+  (0.1ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
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
+  (0.0ms) rollback transaction
54979
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
54980
+  (0.1ms) select sqlite_version(*)
54981
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
54982
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
54983
+ Migrating to CreatePulitzerPostTypes (20150618224344)
54984
+  (0.1ms) begin transaction
54985
+  (0.4ms) 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
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150618224344"]]
54987
+  (0.8ms) commit transaction
54988
+ Migrating to CreatePulitzerContentElementTypes (20150618225402)
54989
+  (0.0ms) begin transaction
54990
+  (0.4ms) 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
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150618225402"]]
54992
+  (0.7ms) commit transaction
54993
+ Migrating to CreatePulitzerPosts (20150619204615)
54994
+  (0.1ms) begin transaction
54995
+  (0.4ms) 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
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619204615"]]
54997
+  (0.8ms) commit transaction
54998
+ Migrating to CreatePulitzerContentElements (20150619204708)
54999
+  (0.1ms) begin transaction
55000
+  (0.5ms) 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
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619204708"]]
55002
+  (0.8ms) commit transaction
55003
+ Migrating to CreatePulitzerTags (20150619213436)
55004
+  (0.1ms) begin transaction
55005
+  (0.4ms) CREATE TABLE "pulitzer_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
55006
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619213436"]]
55007
+  (0.7ms) commit transaction
55008
+ Migrating to CreatePulitzerPostTags (20150619213457)
55009
+  (0.1ms) begin transaction
55010
+  (0.4ms) 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
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619213457"]]
55012
+  (0.7ms) commit transaction
55013
+ Migrating to CreatePulitzerPostTypeContentElementTypes (20150619215914)
55014
+  (0.1ms) begin transaction
55015
+  (0.4ms) 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
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619215914"]]
55017
+  (0.8ms) commit transaction
55018
+ Migrating to AddPluralAndTemplateToPulitzerPostTypes (20150629195832)
55019
+  (0.1ms) begin transaction
55020
+  (2.3ms) ALTER TABLE "pulitzer_post_types" ADD "plural" boolean
55021
+  (0.3ms) ALTER TABLE "pulitzer_post_types" ADD "template" boolean
55022
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150629195832"]]
55023
+  (1.7ms) commit transaction
55024
+ Migrating to AddPulitzerContentElementTypes (20150702150819)
55025
+  (0.1ms) begin transaction
55026
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text' LIMIT 1
55027
+ SQL (0.3ms) 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
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Image' LIMIT 1
55029
+ SQL (0.0ms) 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
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Video' LIMIT 1
55031
+ SQL (0.0ms) 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
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150702150819"]]
55033
+  (0.8ms) commit transaction
55034
+ Migrating to AddSlugToPulitzerPosts (20150724150230)
55035
+  (0.1ms) begin transaction
55036
+  (0.4ms) ALTER TABLE "pulitzer_posts" ADD "slug" varchar
55037
+  (0.3ms) CREATE UNIQUE INDEX "index_pulitzer_posts_on_slug" ON "pulitzer_posts" ("slug")
55038
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150724150230"]]
55039
+  (1.0ms) commit transaction
55040
+ Migrating to ChangeLabelTypeFromPulitzerPostTags (20150902212741)
55041
+  (0.1ms) begin transaction
55042
+  (0.5ms) CREATE 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) 
55043
+  (0.0ms) SELECT * FROM "pulitzer_post_tags"
55044
+  (0.4ms) DROP TABLE "pulitzer_post_tags"
55045
+  (0.1ms) 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
+  (0.0ms) SELECT * FROM "apulitzer_post_tags"
55047
+  (3.1ms) DROP TABLE "apulitzer_post_tags"
55048
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150902212741"]]
55049
+  (1.4ms) commit transaction
55050
+ Migrating to AddTextEditorToPulitzerPostTypeContentElementTypes (20151026180630)
55051
+  (0.1ms) begin transaction
55052
+  (0.5ms) ALTER TABLE "pulitzer_post_type_content_element_types" ADD "text_editor" varchar
55053
+ SQL (0.1ms) UPDATE "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)
55054
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151026180630"]]
55055
+  (0.7ms) commit transaction
55056
+ Migrating to CreatePulitzerVersions (20151029194354)
55057
+  (0.0ms) begin transaction
55058
+  (0.3ms) CREATE 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) 
55059
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151029194354"]]
55060
+  (1.2ms) commit transaction
55061
+ Migrating to ChangePostElementsToVersions (20151029220558)
55062
+  (0.1ms) begin transaction
55063
+  (0.6ms) CREATE 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) 
55064
+  (0.1ms) SELECT * FROM "pulitzer_content_elements"
55065
+  (0.5ms) DROP TABLE "pulitzer_content_elements"
55066
+  (0.1ms) 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
+  (0.1ms) SELECT * FROM "apulitzer_content_elements"
55068
+  (0.1ms) DROP TABLE "apulitzer_content_elements"
55069
+  (0.2ms) CREATE 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) 
55070
+  (0.0ms) SELECT * FROM "pulitzer_post_tags"
55071
+  (0.4ms) DROP TABLE "pulitzer_post_tags"
55072
+  (0.1ms) 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
+  (0.1ms) SELECT * FROM "apulitzer_post_tags"
55074
+  (0.1ms) DROP TABLE "apulitzer_post_tags"
55075
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" ORDER BY "pulitzer_posts"."id" ASC LIMIT 1000
55076
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151029220558"]]
55077
+  (5.8ms) commit transaction
55078
+ Migrating to AddPostTypeContentElementAttributesToContentElements (20151113183344)
55079
+  (0.1ms) begin transaction
55080
+  (0.6ms) ALTER TABLE "pulitzer_content_elements" ADD "text_editor" varchar
55081
+  (0.2ms) ALTER TABLE "pulitzer_content_elements" ADD "height" integer DEFAULT 100
55082
+  (0.4ms) ALTER TABLE "pulitzer_content_elements" ADD "width" integer DEFAULT 100
55083
+  (0.2ms) 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
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1000
55086
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151113183344"]]
55087
+  (2.5ms) commit transaction
55088
+ Migrating to ChangeTemplateToPulitzerPostTypes (20151116162508)
55089
+  (0.1ms) begin transaction
55090
+  (0.2ms) CREATE 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) 
55091
+  (0.0ms) SELECT * FROM "pulitzer_post_types"
55092
+  (0.3ms) DROP TABLE "pulitzer_post_types"
55093
+  (0.1ms) 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
+  (0.0ms) SELECT * FROM "apulitzer_post_types"
55095
+  (0.1ms) DROP TABLE "apulitzer_post_types"
55096
+  (0.2ms) ALTER TABLE "pulitzer_post_types" ADD "kind" integer DEFAULT 0
55097
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151116162508"]]
55098
+  (1.1ms) commit transaction
55099
+ Migrating to AddKindToPulitzerContentElements (20151118031237)
55100
+  (0.1ms) begin transaction
55101
+  (0.8ms) ALTER TABLE "pulitzer_content_elements" ADD "kind" integer DEFAULT 0
55102
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151118031237"]]
55103
+  (0.6ms) commit transaction
55104
+ Migrating to AddErrorsToVersion (20160122204201)
55105
+  (0.1ms) begin transaction
55106
+  (0.4ms) ALTER TABLE "pulitzer_versions" ADD "cloning_errors" jsonb
55107
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160122204201"]]
55108
+  (0.7ms) commit transaction
55109
+ Migrating to CreatePartials (20160511192041)
55110
+  (0.0ms) begin transaction
55111
+  (0.3ms) CREATE TABLE "pulitzer_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "free_form_section_id" integer, "sort_order" integer) 
55112
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160511192041"]]
55113
+  (0.8ms) commit transaction
55114
+ Migrating to AddParentIdToPulitzerTag (20160511201527)
55115
+  (0.1ms) begin transaction
55116
+  (0.4ms) ALTER TABLE "pulitzer_tags" ADD "parent_id" integer
55117
+  (0.2ms) ALTER TABLE "pulitzer_tags" ADD "hierarchical" boolean DEFAULT 'f' NOT NULL
55118
+  (0.1ms) CREATE INDEX "index_pulitzer_tags_on_hierarchical" ON "pulitzer_tags" ("hierarchical")
55119
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160511201527"]]
55120
+  (1.1ms) commit transaction
55121
+ Migrating to AddPartialToContentElement (20160512214545)
55122
+  (0.1ms) begin transaction
55123
+  (0.4ms) ALTER TABLE "pulitzer_content_elements" ADD "partial_id" integer
55124
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512214545"]]
55125
+  (0.9ms) commit transaction
55126
+ Migrating to CreateFreeFormSectionType (20160513153209)
55127
+  (0.1ms) begin transaction
55128
+  (0.4ms) CREATE TABLE "pulitzer_free_form_section_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar) 
55129
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160513153209"]]
55130
+  (0.6ms) commit transaction
55131
+ Migrating to CreateFreeFormSection (20160513153214)
55132
+  (0.0ms) begin transaction
55133
+  (0.3ms) CREATE TABLE "pulitzer_free_form_sections" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "free_form_section_type_id" integer, "name" varchar) 
55134
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160513153214"]]
55135
+  (0.8ms) commit transaction
55136
+ Migrating to FixPostTypeKinds (20160516150237)
55137
+  (0.1ms) begin transaction
55138
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" IN (1, 2)
55139
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516150237"]]
55140
+  (0.7ms) commit transaction
55141
+ Migrating to CreateLayouts (20160517181706)
55142
+  (0.1ms) begin transaction
55143
+  (0.4ms) CREATE TABLE "pulitzer_layouts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar) 
55144
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160517181706"]]
55145
+  (0.8ms) commit transaction
55146
+ Migrating to AddLayoutToPartial (20160517182500)
55147
+  (0.1ms) begin transaction
55148
+  (0.4ms) ALTER TABLE "pulitzer_partials" ADD "layout_id" integer
55149
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160517182500"]]
55150
+  (0.7ms) commit transaction
55151
+ Migrating to AddLabelToPartial (20160519181030)
55152
+  (0.1ms) begin transaction
55153
+  (0.4ms) ALTER TABLE "pulitzer_partials" ADD "label" varchar
55154
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160519181030"]]
55155
+  (0.7ms) commit transaction
55156
+ Migrating to RemoveTitleFromContentElements (20160609214139)
55157
+  (0.1ms) begin transaction
55158
+  (0.3ms) CREATE 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) 
55159
+  (0.1ms) SELECT * FROM "pulitzer_content_elements"
55160
+  (0.3ms) DROP TABLE "pulitzer_content_elements"
55161
+  (0.1ms) 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
+  (0.0ms) SELECT * FROM "apulitzer_content_elements"
55163
+  (0.1ms) DROP TABLE "apulitzer_content_elements"
55164
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160609214139"]]
55165
+  (0.9ms) commit transaction
55166
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
55167
+  (0.1ms) 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
+  (0.3ms)  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
+ 
55183
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
55184
+  (2.0ms) DELETE FROM "pulitzer_content_element_types";
55185
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55186
+  (0.8ms) DELETE FROM sqlite_sequence where name = 'pulitzer_content_element_types';
55187
+  (0.8ms) DELETE FROM "pulitzer_posts";
55188
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55189
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'pulitzer_posts';
55190
+  (0.8ms) DELETE FROM "pulitzer_tags";
55191
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55192
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'pulitzer_tags';
55193
+  (0.8ms) DELETE FROM "pulitzer_post_type_content_element_types";
55194
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55195
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'pulitzer_post_type_content_element_types';
55196
+  (0.8ms) DELETE FROM "pulitzer_versions";
55197
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55198
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'pulitzer_versions';
55199
+  (1.0ms) DELETE FROM "pulitzer_post_tags";
55200
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55201
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'pulitzer_post_tags';
55202
+  (0.7ms) DELETE FROM "pulitzer_post_types";
55203
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55204
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'pulitzer_post_types';
55205
+  (0.7ms) DELETE FROM "pulitzer_partials";
55206
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55207
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'pulitzer_partials';
55208
+  (0.7ms) DELETE FROM "pulitzer_free_form_section_types";
55209
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55210
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'pulitzer_free_form_section_types';
55211
+  (0.7ms) DELETE FROM "pulitzer_free_form_sections";
55212
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55213
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'pulitzer_free_form_sections';
55214
+  (0.7ms) DELETE FROM "pulitzer_layouts";
55215
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55216
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'pulitzer_layouts';
55217
+  (0.7ms) DELETE FROM "pulitzer_content_elements";
55218
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
55219
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'pulitzer_content_elements';
55220
+  (0.1ms) begin transaction
55221
+  (0.0ms) commit transaction
55222
+  (0.0ms) begin transaction
55223
+  (0.1ms) SAVEPOINT active_record_1
55224
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55226
+ Processing by Pulitzer::FreeFormSectionTypesController#new as HTML
55227
+ Parameters: {"post_type_id"=>"1"}
55228
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
55229
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["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
+  (0.4ms) rollback transaction
55234
+  (0.1ms) begin transaction
55235
+  (0.0ms) commit transaction
55236
+  (0.0ms) begin transaction
55237
+  (0.0ms) SAVEPOINT active_record_1
55238
+ SQL (0.3ms) 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.116160"], ["updated_at", "2016-07-05 17:34:46.116160"]]
55239
+  (0.0ms) 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
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
55243
+  (0.1ms) SAVEPOINT active_record_1
55244
+ SQL (0.4ms) INSERT INTO "pulitzer_free_form_section_types" ("post_type_id", "name") VALUES (?, ?) [["post_type_id", 1], ["name", "test sidebar"]]
55245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55246
+ Pulitzer::PostType Load (0.0ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
55247
+ Pulitzer::Post Load (0.1ms) 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
+ Pulitzer::FreeFormSectionType Load (0.1ms) SELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" ORDER BY "pulitzer_free_form_section_types"."id" DESC LIMIT 1
55252
+  (0.6ms) rollback transaction
55253
+  (0.1ms) begin transaction
55254
+  (0.0ms) commit transaction
55255
+  (0.0ms) begin transaction
55256
+  (0.0ms) SAVEPOINT active_record_1
55257
+ SQL (0.2ms) 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.139393"], ["updated_at", "2016-07-05 17:34:46.139393"]]
55258
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55259
+  (0.0ms) SAVEPOINT active_record_1
55260
+ SQL (0.4ms) INSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?) [["name", "main content"], ["post_type_id", 1]]
55261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55262
+ Processing by Pulitzer::FreeFormSectionTypesController#edit as HTML
55263
+ Parameters: {"id"=>"1"}
55264
+ Pulitzer::FreeFormSectionType Load (0.3ms) 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
+  (0.6ms) rollback transaction
55270
+  (0.1ms) begin transaction
55271
+  (0.0ms) commit transaction
55272
+  (0.0ms) begin transaction
55273
+  (0.0ms) SAVEPOINT active_record_1
55274
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55276
+  (0.0ms) SAVEPOINT active_record_1
55277
+ SQL (0.3ms) INSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?) [["name", "main content"], ["post_type_id", 1]]
55278
+  (0.1ms) 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
+ Pulitzer::FreeFormSectionType Load (0.1ms) SELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."id" = ? LIMIT 1 [["id", 1]]
55282
+  (0.0ms) SAVEPOINT active_record_1
55283
+ SQL (0.1ms) UPDATE "pulitzer_free_form_section_types" SET "name" = ? WHERE "pulitzer_free_form_section_types"."id" = ? [["name", "edited name"], ["id", 1]]
55284
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55285
+ Pulitzer::PostType Load (0.0ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
55286
+ Pulitzer::Post Load (0.0ms) 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
+ Pulitzer::FreeFormSectionType Load (0.1ms) SELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."id" = ? LIMIT 1 [["id", 1]]
55290
+  (0.6ms) rollback transaction
55291
+  (0.1ms) begin transaction
55292
+  (0.1ms) commit transaction
55293
+  (0.0ms) begin transaction
55294
+  (0.0ms) SAVEPOINT active_record_1
55295
+ SQL (0.3ms) 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.181655"], ["updated_at", "2016-07-05 17:34:46.181655"]]
55296
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55297
+  (0.0ms) SAVEPOINT active_record_1
55298
+ SQL (0.4ms) INSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?) [["name", "main content"], ["post_type_id", 1]]
55299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55300
+ Processing by Pulitzer::FreeFormSectionTypesController#destroy as HTML
55301
+ Parameters: {"id"=>"1"}
55302
+ Pulitzer::FreeFormSectionType Load (0.1ms) SELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."id" = ? LIMIT 1 [["id", 1]]
55303
+  (0.1ms) SAVEPOINT active_record_1
55304
+ SQL (0.1ms) DELETE FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."id" = ? [["id", 1]]
55305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55306
+ Pulitzer::PostType Load (0.0ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
55307
+ Pulitzer::Post Load (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? [["post_type_id", 1]]
55308
+ Rendered text template (0.0ms)
55309
+ Completed 200 OK in 6ms (Views: 3.2ms | ActiveRecord: 0.3ms)
55310
+ Pulitzer::FreeFormSectionType Load (0.1ms) SELECT "pulitzer_free_form_section_types".* FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."id" = ? LIMIT 1 [["id", 1]]
55311
+  (0.9ms) rollback transaction
55312
+  (0.1ms) begin transaction
55313
+  (0.0ms) commit transaction
55314
+  (0.0ms) begin transaction
55315
+  (0.0ms) SAVEPOINT active_record_1
55316
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55318
+  (0.1ms) SAVEPOINT active_record_1
55319
+ SQL (0.5ms) INSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?) [["name", "free as a bird"]]
55320
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55321
+ Processing by Pulitzer::PartialsController#new as HTML
55322
+ Parameters: {"partial"=>{"free_form_section_id"=>"1"}}
55323
+ Pulitzer::FreeFormSection Load (0.1ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1 [["id", 1]]
55324
+ Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms)
55325
+ Pulitzer::PostType Load (0.6ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 1]]
55326
+ Pulitzer::PostType Load (0.0ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 1]]
55327
+ Pulitzer::Layout Load (0.1ms) 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
+  (0.6ms) rollback transaction
55331
+  (0.1ms) begin transaction
55332
+  (0.0ms) commit transaction
55333
+  (0.0ms) begin transaction
55334
+  (0.0ms) SAVEPOINT active_record_1
55335
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55337
+  (0.0ms) SAVEPOINT active_record_1
55338
+ SQL (0.3ms) INSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?) [["name", "free as a bird"]]
55339
+  (0.0ms) 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
+ Pulitzer::FreeFormSection Load (0.1ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1 [["id", 1]]
55343
+  (0.1ms) SAVEPOINT active_record_1
55344
+ Pulitzer::FreeFormSection Load (0.0ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1 [["id", 1]]
55345
+  (0.1ms) SELECT MAX("pulitzer_partials"."sort_order") FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? [["free_form_section_id", 1]]
55346
+ SQL (0.1ms) 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]]
55347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55348
+ Pulitzer::PostType Load (0.0ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
55349
+ Pulitzer::PostTypeContentElementType Load (0.2ms) 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
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."partial_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["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
+ Pulitzer::Partial Load (0.1ms) SELECT "pulitzer_partials".* FROM "pulitzer_partials" ORDER BY "pulitzer_partials"."id" DESC LIMIT 1
55357
+  (0.7ms) rollback transaction
55358
+  (0.1ms) begin transaction
55359
+  (0.1ms) commit transaction
55360
+  (0.0ms) begin transaction
55361
+  (0.0ms) SAVEPOINT active_record_1
55362
+ SQL (0.3ms) INSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?) [["name", "free as a bird"]]
55363
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55364
+  (0.0ms) SAVEPOINT active_record_1
55365
+ SQL (0.3ms) 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.282809"], ["updated_at", "2016-07-05 17:34:46.282809"]]
55366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55367
+  (0.0ms) SAVEPOINT active_record_1
55368
+ Pulitzer::FreeFormSection Load (0.0ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1 [["id", 1]]
55369
+  (0.0ms) SELECT MAX("pulitzer_partials"."sort_order") FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? [["free_form_section_id", 1]]
55370
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55372
+ Processing by Pulitzer::PartialsController#edit as HTML
55373
+ Parameters: {"id"=>"1"}
55374
+ Pulitzer::Partial Load (0.1ms) SELECT "pulitzer_partials".* FROM "pulitzer_partials" WHERE "pulitzer_partials"."id" = ? LIMIT 1 [["id", 1]]
55375
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["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
+ Pulitzer::Layout Load (0.1ms) 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
+  (0.6ms) rollback transaction
55382
+  (0.1ms) begin transaction
55383
+  (0.1ms) commit transaction
55384
+  (0.1ms) begin transaction
55385
+  (0.0ms) SAVEPOINT active_record_1
55386
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55388
+  (0.0ms) SAVEPOINT active_record_1
55389
+ SQL (0.3ms) INSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?) [["name", "free as a bird"]]
55390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55391
+  (0.0ms) SAVEPOINT active_record_1
55392
+ SQL (0.1ms) 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
+  (0.2ms) RELEASE SAVEPOINT active_record_1
55394
+  (0.1ms) SAVEPOINT active_record_1
55395
+ Pulitzer::FreeFormSection Load (0.0ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1 [["id", 1]]
55396
+  (0.0ms) SELECT MAX("pulitzer_partials"."sort_order") FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? [["free_form_section_id", 1]]
55397
+ SQL (0.2ms) INSERT INTO "pulitzer_partials" ("post_type_id", "free_form_section_id", "sort_order") VALUES (?, ?, ?) [["post_type_id", 2], ["free_form_section_id", 1], ["sort_order", 1]]
55398
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55399
+ Processing by Pulitzer::PartialsController#update as HTML
55400
+ Parameters: {"partial"=>{"post_type_id"=>"1"}, "id"=>"1"}
55401
+ Pulitzer::Partial Load (0.1ms) SELECT "pulitzer_partials".* FROM "pulitzer_partials" WHERE "pulitzer_partials"."id" = ? LIMIT 1 [["id", 1]]
55402
+  (0.1ms) SAVEPOINT active_record_1
55403
+ SQL (0.1ms) UPDATE "pulitzer_partials" SET "post_type_id" = ? WHERE "pulitzer_partials"."id" = ? [["post_type_id", 1], ["id", 1]]
55404
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55405
+ Pulitzer::PostType Load (0.0ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
55406
+ Rendered /Users/eric/projects/pulitzer/app/views/pulitzer/shared/_drag_handle.html.erb (0.1ms)
55407
+ Pulitzer::ContentElement Load (0.0ms) 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
+ Pulitzer::Partial Load (0.0ms) SELECT "pulitzer_partials".* FROM "pulitzer_partials" WHERE "pulitzer_partials"."id" = ? LIMIT 1 [["id", 1]]
55412
+ Pulitzer::PostType Load (0.0ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
55413
+  (0.6ms) rollback transaction
55414
+  (0.1ms) begin transaction
55415
+  (0.0ms) commit transaction
55416
+  (0.0ms) begin transaction
55417
+  (0.1ms) SAVEPOINT active_record_1
55418
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 1' LIMIT 1
55419
+ SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 1"], ["created_at", "2016-07-05 17:34:46.344641"], ["updated_at", "2016-07-05 17:34:46.344641"]]
55420
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55421
+  (0.0ms) SAVEPOINT active_record_1
55422
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 2' LIMIT 1
55423
+ SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.0ms) 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
+  (0.5ms) rollback transaction
55429
+  (0.1ms) begin transaction
55430
+  (0.0ms) commit transaction
55431
+  (0.0ms) begin transaction
55432
+  (0.0ms) SAVEPOINT active_record_1
55433
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 3' LIMIT 1
55434
+ SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 3"], ["created_at", "2016-07-05 17:34:46.364001"], ["updated_at", "2016-07-05 17:34:46.364001"]]
55435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55436
+  (0.0ms) SAVEPOINT active_record_1
55437
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 4' LIMIT 1
55438
+ SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) 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
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f'
55444
+  (0.6ms) rollback transaction
55445
+  (0.1ms) begin transaction
55446
+  (0.0ms) commit transaction
55447
+  (0.0ms) begin transaction
55448
+  (0.1ms) SAVEPOINT active_record_1
55449
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 5' LIMIT 1
55450
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55452
+  (0.0ms) SAVEPOINT active_record_1
55453
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 6' LIMIT 1
55454
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL
55460
+  (0.7ms) rollback transaction
55461
+  (0.1ms) begin transaction
55462
+  (0.0ms) commit transaction
55463
+  (0.0ms) begin transaction
55464
+  (0.1ms) SAVEPOINT active_record_1
55465
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 7' LIMIT 1
55466
+ SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 7"], ["created_at", "2016-07-05 17:34:46.391543"], ["updated_at", "2016-07-05 17:34:46.391543"]]
55467
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55468
+ Processing by Pulitzer::TagsController#show as HTML
55469
+ Parameters: {"id"=>"1"}
55470
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["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
+  (0.4ms) rollback transaction
55474
+  (0.1ms) begin transaction
55475
+  (0.0ms) commit transaction
55476
+  (0.0ms) begin transaction
55477
+  (0.0ms) SAVEPOINT active_record_1
55478
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 8' LIMIT 1
55479
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55481
+ Processing by Pulitzer::TagsController#show as HTML
55482
+ Parameters: {"id"=>"1"}
55483
+ Pulitzer::Tag Load (0.1ms) 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
+  (2.5ms) rollback transaction
55487
+  (0.2ms) begin transaction
55488
+  (0.1ms) commit transaction
55489
+  (0.0ms) 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
+  (0.1ms) rollback transaction
55495
+  (0.1ms) begin transaction
55496
+  (0.0ms) commit transaction
55497
+  (0.0ms) 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
+  (0.1ms) rollback transaction
55503
+  (0.2ms) begin transaction
55504
+  (0.1ms) commit transaction
55505
+  (0.1ms) 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
+  (0.1ms) rollback transaction
55511
+  (0.1ms) begin transaction
55512
+  (0.0ms) commit transaction
55513
+  (0.0ms) begin transaction
55514
+  (0.2ms) SELECT COUNT(*) FROM "pulitzer_tags"
55515
+ Processing by Pulitzer::TagsController#create as HTML
55516
+ Parameters: {"tag"=>{"name"=>"The north 9"}}
55517
+  (0.1ms) SAVEPOINT active_record_1
55518
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 9' LIMIT 1
55519
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_tags"
55524
+  (0.4ms) rollback transaction
55525
+  (0.1ms) begin transaction
55526
+  (0.0ms) commit transaction
55527
+  (0.0ms) begin transaction
55528
+ Processing by Pulitzer::TagsController#create as HTML
55529
+ Parameters: {"tag"=>{"name"=>"The north 10"}}
55530
+  (0.0ms) SAVEPOINT active_record_1
55531
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 10' LIMIT 1
55532
+ SQL (0.5ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 10"], ["created_at", "2016-07-05 17:34:46.468736"], ["updated_at", "2016-07-05 17:34:46.468736"]]
55533
+  (0.1ms) 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
+  (0.4ms) rollback transaction
55537
+  (0.1ms) begin transaction
55538
+  (0.0ms) commit transaction
55539
+  (0.0ms) begin transaction
55540
+  (0.0ms) SAVEPOINT active_record_1
55541
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awesomesauce' LIMIT 1
55542
+ SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "awesomesauce"], ["created_at", "2016-07-05 17:34:46.474960"], ["updated_at", "2016-07-05 17:34:46.474960"]]
55543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55544
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_tags"
55545
+ Processing by Pulitzer::TagsController#create as HTML
55546
+ Parameters: {"tag"=>{"name"=>"awesomesauce"}}
55547
+  (0.1ms) SAVEPOINT active_record_1
55548
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awesomesauce' LIMIT 1
55549
+  (0.0ms) 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
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_tags"
55553
+  (0.4ms) rollback transaction
55554
+  (0.1ms) begin transaction
55555
+  (0.0ms) commit transaction
55556
+  (0.1ms) begin transaction
55557
+  (0.0ms) SAVEPOINT active_record_1
55558
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awesomesauce' LIMIT 1
55559
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55561
+ Processing by Pulitzer::TagsController#create as HTML
55562
+ Parameters: {"tag"=>{"name"=>"awesomesauce"}}
55563
+  (0.1ms) SAVEPOINT active_record_1
55564
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awesomesauce' LIMIT 1
55565
+  (0.0ms) 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
+  (0.4ms) rollback transaction
55569
+  (0.1ms) begin transaction
55570
+  (0.0ms) commit transaction
55571
+  (0.0ms) begin transaction
55572
+  (0.0ms) SAVEPOINT active_record_1
55573
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 13' LIMIT 1
55574
+ SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 13"], ["created_at", "2016-07-05 17:34:46.501492"], ["updated_at", "2016-07-05 17:34:46.501492"]]
55575
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55576
+ Processing by Pulitzer::TagsController#edit as HTML
55577
+ Parameters: {"id"=>"1"}
55578
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["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
+  (0.4ms) rollback transaction
55582
+  (0.1ms) begin transaction
55583
+  (0.0ms) commit transaction
55584
+  (0.0ms) begin transaction
55585
+  (0.1ms) SAVEPOINT active_record_1
55586
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 14' LIMIT 1
55587
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55589
+ Processing by Pulitzer::TagsController#edit as HTML
55590
+ Parameters: {"id"=>"1"}
55591
+ Pulitzer::Tag Load (0.1ms) 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
+  (0.5ms) rollback transaction
55595
+  (0.1ms) begin transaction
55596
+  (0.0ms) commit transaction
55597
+  (0.0ms) begin transaction
55598
+  (0.1ms) SAVEPOINT active_record_1
55599
+ Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 15' LIMIT 1
55600
+ SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 15"], ["created_at", "2016-07-05 17:34:46.535699"], ["updated_at", "2016-07-05 17:34:46.535699"]]
55601
+  (0.2ms) 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
+  (0.5ms) rollback transaction
55607
+  (0.1ms) begin transaction
55608
+  (0.0ms) commit transaction
55609
+  (0.0ms) begin transaction
55610
+  (0.1ms) SAVEPOINT active_record_1
55611
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 17' LIMIT 1
55612
+ SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 17"], ["created_at", "2016-07-05 17:34:46.548924"], ["updated_at", "2016-07-05 17:34:46.548924"]]
55613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55614
+ Processing by Pulitzer::TagsController#update as HTML
55615
+ Parameters: {"tag"=>{"name"=>"The north 18"}, "id"=>"1"}
55616
+  (0.1ms) SAVEPOINT active_record_1
55617
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'The north 18' AND "pulitzer_tags"."id" != 1) LIMIT 1
55618
+ SQL (0.4ms) UPDATE "pulitzer_tags" SET "name" = ?, "updated_at" = ? WHERE "pulitzer_tags"."id" = ? [["name", "The north 18"], ["updated_at", "2016-07-05 17:34:46.557284"], ["id", 1]]
55619
+  (0.0ms) 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
+  (0.7ms) rollback transaction
55623
+  (0.1ms) begin transaction
55624
+  (0.0ms) commit transaction
55625
+  (0.0ms) begin transaction
55626
+  (0.1ms) SAVEPOINT active_record_1
55627
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'sadpanda' LIMIT 1
55628
+ SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "sadpanda"], ["created_at", "2016-07-05 17:34:46.563727"], ["updated_at", "2016-07-05 17:34:46.563727"]]
55629
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55630
+  (0.1ms) SAVEPOINT active_record_1
55631
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 20' LIMIT 1
55632
+ SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 20"], ["created_at", "2016-07-05 17:34:46.567353"], ["updated_at", "2016-07-05 17:34:46.567353"]]
55633
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55634
+ Processing by Pulitzer::TagsController#update as HTML
55635
+ Parameters: {"tag"=>{"name"=>"sadpanda"}, "id"=>"2"}
55636
+  (0.1ms) SAVEPOINT active_record_1
55637
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'sadpanda' AND "pulitzer_tags"."id" != 2) LIMIT 1
55638
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
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
+  (0.7ms) rollback transaction
55642
+  (0.1ms) begin transaction
55643
+  (0.0ms) commit transaction
55644
+  (0.0ms) begin transaction
55645
+  (0.0ms) SAVEPOINT active_record_1
55646
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'sadpanda' LIMIT 1
55647
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55649
+  (0.0ms) SAVEPOINT active_record_1
55650
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 22' LIMIT 1
55651
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55653
+ Processing by Pulitzer::TagsController#update as HTML
55654
+ Parameters: {"tag"=>{"name"=>"sadpanda"}, "id"=>"2"}
55655
+  (0.1ms) SAVEPOINT active_record_1
55656
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'sadpanda' AND "pulitzer_tags"."id" != 2) LIMIT 1
55657
+  (0.0ms) 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
+  (0.7ms) rollback transaction
55661
+  (0.1ms) begin transaction
55662
+  (0.0ms) commit transaction
55663
+  (0.0ms) begin transaction
55664
+  (0.0ms) SAVEPOINT active_record_1
55665
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 23' LIMIT 1
55666
+ SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 23"], ["created_at", "2016-07-05 17:34:46.596095"], ["updated_at", "2016-07-05 17:34:46.596095"]]
55667
+  (0.0ms) 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
+  (0.4ms) rollback transaction
55673
+  (0.1ms) begin transaction
55674
+  (0.0ms) commit transaction
55675
+  (0.0ms) begin transaction
55676
+  (0.0ms) SAVEPOINT active_record_1
55677
+ Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 24' LIMIT 1
55678
+ SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 24"], ["created_at", "2016-07-05 17:34:46.605661"], ["updated_at", "2016-07-05 17:34:46.605661"]]
55679
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55680
+ Processing by Pulitzer::TagsController#destroy as HTML
55681
+ Parameters: {"id"=>"1"}
55682
+  (0.1ms) SAVEPOINT active_record_1
55683
+ Pulitzer::PostTag Load (0.1ms) 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
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]]
55685
+ SQL (0.3ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 1]]
55686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55687
+ Rendered text template (0.0ms)
55688
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.7ms)
55689
+  (0.7ms) rollback transaction
55690
+  (0.1ms) begin transaction
55691
+  (0.0ms) commit transaction
55692
+  (0.0ms) begin transaction
55693
+  (0.1ms) SAVEPOINT active_record_1
55694
+ SQL (0.2ms) 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.626025"], ["updated_at", "2016-07-05 17:34:46.626025"]]
55695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55696
+  (0.1ms) SAVEPOINT active_record_1
55697
+ Pulitzer::Post Exists (0.1ms) 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
+ SQL (0.4ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55701
+  (0.0ms) SAVEPOINT active_record_1
55702
+ SQL (0.1ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:46.728313"], ["updated_at", "2016-07-05 17:34:46.728313"]]
55703
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55704
+  (0.1ms) SAVEPOINT active_record_1
55705
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 1' LIMIT 1
55706
+ SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 1"], ["created_at", "2016-07-05 17:34:46.741047"], ["updated_at", "2016-07-05 17:34:46.741047"]]
55707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55708
+  (0.0ms) SAVEPOINT active_record_1
55709
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55711
+  (0.0ms) SAVEPOINT active_record_1
55712
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 2' LIMIT 1
55713
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55715
+  (0.0ms) SAVEPOINT active_record_1
55716
+ SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55718
+  (0.0ms) SAVEPOINT active_record_1
55719
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 3' LIMIT 1
55720
+ SQL (0.0ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 3"], ["created_at", "2016-07-05 17:34:46.749673"], ["updated_at", "2016-07-05 17:34:46.749673"]]
55721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55722
+  (0.0ms) SAVEPOINT active_record_1
55723
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55725
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? [["version_id", 2]]
55726
+  (0.0ms) SAVEPOINT active_record_1
55727
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55729
+ Pulitzer::CloneVersion !!!
55730
+ /Users/eric/.rvm/gems/ruby-2.3.0/bin/rspec
55731
+ Pulitzer::Version Load (0.1ms) 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
+ Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 2]]
55733
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
55734
+  (0.0ms) SAVEPOINT active_record_1
55735
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55737
+  (0.0ms) SAVEPOINT active_record_1
55738
+ SQL (0.1ms) 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.763591"], ["id", 4]]
55739
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55740
+ Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 2]]
55741
+  (0.0ms) SAVEPOINT active_record_1
55742
+ SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55744
+  (0.0ms) SAVEPOINT active_record_1
55745
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55747
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 3]]
55748
+  (0.0ms) SAVEPOINT active_record_1
55749
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55751
+  (0.0ms) SAVEPOINT active_record_1
55752
+ SQL (0.1ms) 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.775009"], ["id", 6]]
55753
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55754
+ Pulitzer::FreeFormSection Load (0.1ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 2]]
55755
+ Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? [["version_id", 2]]
55756
+  (0.0ms) SAVEPOINT active_record_1
55757
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55759
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? [["version_id", 3]]
55760
+  (1.5ms) rollback transaction
55761
+  (0.1ms) begin transaction
55762
+  (0.0ms) commit transaction
55763
+  (0.0ms) begin transaction
55764
+  (0.0ms) SAVEPOINT active_record_1
55765
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55767
+  (0.0ms) SAVEPOINT active_record_1
55768
+ Pulitzer::Post Exists (0.0ms) SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-2"]]
55769
+ SQL (0.4ms) 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
+ SQL (0.1ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:46.794943"], ["updated_at", "2016-07-05 17:34:46.794943"]]
55771
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55772
+  (0.0ms) SAVEPOINT active_record_1
55773
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55775
+  (0.0ms) SAVEPOINT active_record_1
55776
+ SQL (0.1ms) INSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?) [["name", "section A"], ["version_id", 2]]
55777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55778
+  (0.0ms) SAVEPOINT active_record_1
55779
+ SQL (0.0ms) INSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?) [["name", "section B"], ["version_id", 2]]
55780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55781
+  (0.0ms) SAVEPOINT active_record_1
55782
+ SQL (0.0ms) INSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?) [["name", "section C"], ["version_id", 2]]
55783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55784
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 2]]
55785
+  (0.1ms) SAVEPOINT active_record_1
55786
+ SQL (0.0ms) 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.803368"], ["updated_at", "2016-07-05 17:34:46.803368"]]
55787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55788
+ Pulitzer::CloneVersion !!!
55789
+ /Users/eric/.rvm/gems/ruby-2.3.0/bin/rspec
55790
+ Pulitzer::Version Load (0.1ms) 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]]
55791
+ Pulitzer::ContentElement Load (0.0ms) 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
+ Pulitzer::FreeFormSection Load (0.0ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 2]]
55793
+  (0.0ms) SAVEPOINT active_record_1
55794
+ SQL (0.0ms) INSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?) [["name", "section A"]]
55795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55796
+ Pulitzer::Partial Load (0.1ms) SELECT "pulitzer_partials".* FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? ORDER BY "pulitzer_partials"."sort_order" ASC [["free_form_section_id", 1]]
55797
+  (0.0ms) SAVEPOINT active_record_1
55798
+ SQL (0.1ms) UPDATE "pulitzer_free_form_sections" SET "version_id" = ? WHERE "pulitzer_free_form_sections"."id" = ? [["version_id", 3], ["id", 4]]
55799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55800
+  (0.1ms) SAVEPOINT active_record_1
55801
+ SQL (0.1ms) INSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?) [["name", "section B"]]
55802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55803
+ Pulitzer::Partial Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
55805
+ SQL (0.0ms) UPDATE "pulitzer_free_form_sections" SET "version_id" = ? WHERE "pulitzer_free_form_sections"."id" = ? [["version_id", 3], ["id", 5]]
55806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55807
+  (0.0ms) SAVEPOINT active_record_1
55808
+ SQL (0.0ms) INSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?) [["name", "section C"]]
55809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55810
+ Pulitzer::Partial Load (0.0ms) SELECT "pulitzer_partials".* FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? ORDER BY "pulitzer_partials"."sort_order" ASC [["free_form_section_id", 3]]
55811
+  (0.0ms) SAVEPOINT active_record_1
55812
+ SQL (0.0ms) UPDATE "pulitzer_free_form_sections" SET "version_id" = ? WHERE "pulitzer_free_form_sections"."id" = ? [["version_id", 3], ["id", 6]]
55813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55814
+ Pulitzer::PostTag Load (0.0ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? [["version_id", 2]]
55815
+  (0.0ms) SAVEPOINT active_record_1
55816
+ SQL (0.1ms) UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 0], ["updated_at", "2016-07-05 17:34:46.817654"], ["id", 3]]
55817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55818
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 3]]
55819
+  (0.7ms) rollback transaction
55820
+  (0.1ms) begin transaction
55821
+  (0.0ms) commit transaction
55822
+  (0.0ms) begin transaction
55823
+  (0.1ms) SAVEPOINT active_record_1
55824
+ SQL (0.3ms) 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.826780"], ["updated_at", "2016-07-05 17:34:46.826780"]]
55825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55826
+  (0.0ms) SAVEPOINT active_record_1
55827
+ Pulitzer::Post Exists (0.0ms) 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
+ SQL (0.3ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55831
+  (0.0ms) SAVEPOINT active_record_1
55832
+ SQL (0.1ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:46.834482"], ["updated_at", "2016-07-05 17:34:46.834482"]]
55833
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55834
+  (0.0ms) SAVEPOINT active_record_1
55835
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 4' LIMIT 1
55836
+ SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 4"], ["created_at", "2016-07-05 17:34:46.837483"], ["updated_at", "2016-07-05 17:34:46.837483"]]
55837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55838
+  (0.0ms) SAVEPOINT active_record_1
55839
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55841
+  (0.0ms) SAVEPOINT active_record_1
55842
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 5' LIMIT 1
55843
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55845
+  (0.0ms) SAVEPOINT active_record_1
55846
+ SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_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"], ["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55848
+  (0.0ms) SAVEPOINT active_record_1
55849
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 6' LIMIT 1
55850
+ SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 6"], ["created_at", "2016-07-05 17:34:46.847842"], ["updated_at", "2016-07-05 17:34:46.847842"]]
55851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55852
+  (0.0ms) SAVEPOINT active_record_1
55853
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55855
+  (0.0ms) SAVEPOINT active_record_1
55856
+ SQL (0.1ms) 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.851912"], ["updated_at", "2016-07-05 17:34:46.851912"]]
55857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55858
+ Pulitzer::CloneVersion !!!
55859
+ /Users/eric/.rvm/gems/ruby-2.3.0/bin/rspec
55860
+ Pulitzer::Version Load (0.0ms) 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]]
55861
+ Pulitzer::ContentElement Load (0.0ms) 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
+ Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
55863
+  (0.0ms) SAVEPOINT active_record_1
55864
+ SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_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"], ["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55866
+  (0.0ms) SAVEPOINT active_record_1
55867
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55869
+ Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 2]]
55870
+  (0.0ms) SAVEPOINT active_record_1
55871
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55873
+  (0.0ms) SAVEPOINT active_record_1
55874
+ SQL (0.0ms) 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.864343"], ["id", 5]]
55875
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55876
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 3]]
55877
+  (0.1ms) SAVEPOINT active_record_1
55878
+ SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_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"], ["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55880
+  (0.0ms) SAVEPOINT active_record_1
55881
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55883
+ Pulitzer::FreeFormSection Load (0.0ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 2]]
55884
+ Pulitzer::PostTag Load (0.0ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? [["version_id", 2]]
55885
+  (0.0ms) SAVEPOINT active_record_1
55886
+ SQL (0.1ms) UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 0], ["updated_at", "2016-07-05 17:34:46.873365"], ["id", 3]]
55887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55888
+ Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["version_id", 3]]
55889
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
55890
+  (0.7ms) rollback transaction
55891
+  (0.1ms) begin transaction
55892
+  (0.0ms) commit transaction
55893
+  (0.0ms) begin transaction
55894
+  (0.0ms) SAVEPOINT active_record_1
55895
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55897
+  (0.1ms) SAVEPOINT active_record_1
55898
+ Pulitzer::ContentElementType Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 7' LIMIT 1
55899
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55901
+  (0.0ms) SAVEPOINT active_record_1
55902
+ SQL (0.1ms) 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 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55904
+  (0.0ms) SAVEPOINT active_record_1
55905
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 8' LIMIT 1
55906
+ SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 8"], ["created_at", "2016-07-05 17:34:46.895666"], ["updated_at", "2016-07-05 17:34:46.895666"]]
55907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55908
+  (0.0ms) SAVEPOINT active_record_1
55909
+ SQL (0.0ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55911
+  (0.0ms) SAVEPOINT active_record_1
55912
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 9' LIMIT 1
55913
+ SQL (0.0ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55915
+  (0.0ms) SAVEPOINT active_record_1
55916
+ SQL (0.3ms) 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 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55918
+ SQL (0.1ms) UPDATE "pulitzer_post_types" SET "kind" = 1 WHERE "pulitzer_post_types"."id" = ? [["id", 1]]
55919
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? [["post_type_id", 1]]
55920
+  (0.0ms) SAVEPOINT active_record_1
55921
+ SQL (0.1ms) INSERT INTO "pulitzer_free_form_sections" ("name") VALUES (?) [["name", "test"]]
55922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55923
+  (0.0ms) SAVEPOINT active_record_1
55924
+ Pulitzer::FreeFormSection Load (0.0ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."id" = ? LIMIT 1 [["id", 1]]
55925
+  (0.0ms) SELECT MAX("pulitzer_partials"."sort_order") FROM "pulitzer_partials" WHERE "pulitzer_partials"."free_form_section_id" = ? [["free_form_section_id", 1]]
55926
+ SQL (0.1ms) 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]]
55927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55928
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."partial_id" = ? [["partial_id", 1]]
55929
+ Pulitzer::PostType Load (0.0ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
55930
+ Pulitzer::PostTypeContentElementType Load (0.0ms) 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]]
55931
+  (0.0ms) SAVEPOINT active_record_1
55932
+ Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
55933
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55935
+  (0.1ms) SAVEPOINT active_record_1
55936
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 2]]
55937
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55939
+  (0.0ms) SAVEPOINT active_record_1
55940
+ Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 3]]
55941
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55943
+  (0.6ms) rollback transaction
55944
+  (0.1ms) begin transaction
55945
+  (0.0ms) commit transaction
55946
+  (0.0ms) begin transaction
55947
+  (0.0ms) SAVEPOINT active_record_1
55948
+ SQL (0.2ms) 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.927607"], ["updated_at", "2016-07-05 17:34:46.927607"]]
55949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55950
+  (0.0ms) SAVEPOINT active_record_1
55951
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 10' LIMIT 1
55952
+ SQL (0.5ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 10"], ["created_at", "2016-07-05 17:34:46.930530"], ["updated_at", "2016-07-05 17:34:46.930530"]]
55953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55954
+  (0.1ms) SAVEPOINT active_record_1
55955
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55957
+  (0.0ms) SAVEPOINT active_record_1
55958
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 11' LIMIT 1
55959
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55961
+  (0.0ms) SAVEPOINT active_record_1
55962
+ SQL (0.1ms) 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 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55964
+  (0.0ms) SAVEPOINT active_record_1
55965
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 12' LIMIT 1
55966
+ SQL (0.0ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 12"], ["created_at", "2016-07-05 17:34:46.939433"], ["updated_at", "2016-07-05 17:34:46.939433"]]
55967
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55968
+  (0.0ms) SAVEPOINT active_record_1
55969
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55971
+  (0.0ms) SELECT COUNT(*) FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? [["post_type_id", 1]]
55972
+  (0.0ms) SAVEPOINT active_record_1
55973
+ Pulitzer::Post Exists (0.0ms) 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
+ SQL (0.1ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55977
+ Pulitzer::Version Load (0.0ms) 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
+  (0.0ms) SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? [["version_id", 1]]
55979
+ Pulitzer::PostTypeContentElementType Load (0.0ms) 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
+ Pulitzer::Version Load (0.0ms) 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]]
55981
+  (0.0ms) SAVEPOINT active_record_1
55982
+ Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
55983
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
55985
+ Pulitzer::Version Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
55987
+ Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 2]]
55988
+ SQL (0.1ms) 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 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55990
+ Pulitzer::Version Load (0.0ms) 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]]
55991
+  (0.0ms) SAVEPOINT active_record_1
55992
+ Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 3]]
55993
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
55995
+ Pulitzer::FreeFormSectionType Load (0.1ms) 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
+ Pulitzer::Version Load (0.0ms) 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]]
55997
+  (0.0ms) SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? [["version_id", 1]]
55998
+  (0.6ms) rollback transaction
55999
+  (0.1ms) begin transaction
56000
+  (0.0ms) commit transaction
56001
+  (0.0ms) begin transaction
56002
+  (0.0ms) SAVEPOINT active_record_1
56003
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56005
+  (0.0ms) SAVEPOINT active_record_1
56006
+ SQL (0.4ms) INSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?) [["name", "Main Body"], ["post_type_id", 1]]
56007
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56008
+  (0.0ms) SAVEPOINT active_record_1
56009
+ SQL (0.1ms) INSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?) [["name", "Side Bar"], ["post_type_id", 1]]
56010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56011
+  (0.0ms) SAVEPOINT active_record_1
56012
+ SQL (0.0ms) INSERT INTO "pulitzer_free_form_section_types" ("name", "post_type_id") VALUES (?, ?) [["name", "Footer List"], ["post_type_id", 1]]
56013
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56014
+  (0.0ms) SAVEPOINT active_record_1
56015
+ Pulitzer::Post Exists (0.0ms) SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "test"]]
56016
+ SQL (0.1ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56019
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_free_form_section_types" WHERE "pulitzer_free_form_section_types"."post_type_id" = ? [["post_type_id", 1]]
56020
+ Pulitzer::Version Load (0.0ms) 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]]
56021
+  (0.0ms) SELECT COUNT(*) FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 1]]
56022
+ Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]
56023
+ Pulitzer::PostTypeContentElementType Load (0.1ms) 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
+ Pulitzer::FreeFormSectionType Load (0.0ms) 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]]
56025
+ Pulitzer::Version Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
56027
+ SQL (0.1ms) INSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?) [["name", "Main Body"], ["version_id", 1]]
56028
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56029
+ Pulitzer::Version Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
56031
+ SQL (0.1ms) INSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?) [["name", "Side Bar"], ["version_id", 1]]
56032
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56033
+ Pulitzer::Version Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
56035
+ SQL (0.0ms) INSERT INTO "pulitzer_free_form_sections" ("name", "version_id") VALUES (?, ?) [["name", "Footer List"], ["version_id", 1]]
56036
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56037
+ Pulitzer::Version Load (0.1ms) 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
+  (0.0ms) SELECT COUNT(*) FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 1]]
56039
+  (0.8ms) rollback transaction
56040
+  (0.1ms) begin transaction
56041
+  (0.0ms) commit transaction
56042
+  (0.0ms) begin transaction
56043
+  (0.0ms) SAVEPOINT active_record_1
56044
+ SQL (0.3ms) 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.995519"], ["updated_at", "2016-07-05 17:34:46.995519"]]
56045
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56046
+  (0.0ms) SAVEPOINT active_record_1
56047
+ Pulitzer::Post Exists (0.0ms) 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
+ SQL (0.3ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56051
+  (0.1ms) SAVEPOINT active_record_1
56052
+ SQL (0.1ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.001953"], ["updated_at", "2016-07-05 17:34:47.001953"]]
56053
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56054
+  (0.1ms) SAVEPOINT active_record_1
56055
+ Pulitzer::ContentElementType Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 13' LIMIT 1
56056
+ SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 13"], ["created_at", "2016-07-05 17:34:47.006084"], ["updated_at", "2016-07-05 17:34:47.006084"]]
56057
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56058
+  (0.0ms) SAVEPOINT active_record_1
56059
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56061
+  (0.1ms) SAVEPOINT active_record_1
56062
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 14' LIMIT 1
56063
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56065
+  (0.0ms) SAVEPOINT active_record_1
56066
+ SQL (0.2ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56068
+  (0.1ms) SAVEPOINT active_record_1
56069
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 15' LIMIT 1
56070
+ SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 15"], ["created_at", "2016-07-05 17:34:47.019651"], ["updated_at", "2016-07-05 17:34:47.019651"]]
56071
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56072
+  (0.0ms) SAVEPOINT active_record_1
56073
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56075
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
56076
+  (0.0ms) SAVEPOINT active_record_1
56077
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56079
+ Pulitzer::Tag Load (0.2ms) 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
+  (0.1ms) SAVEPOINT active_record_1
56081
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56083
+ [ActiveJob] Enqueued Pulitzer::CloneVersionJob (Job ID: 4e1f22c0-9e45-408f-b725-0b2115625556) to Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
56084
+ [ActiveJob] Pulitzer::Version Load (0.1ms) 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] Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["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] Pulitzer::Version Load (0.0ms) 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] Pulitzer::ContentElement Load (0.0ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 2]]
56091
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] Pulitzer::ContentElementType Load (0.0ms) 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]  (0.1ms) SAVEPOINT active_record_1
56093
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56095
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556]  (0.0ms) SAVEPOINT active_record_1
56096
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] SQL (0.1ms) 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.047742"], ["id", 4]]
56097
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556]  (0.0ms) RELEASE SAVEPOINT active_record_1
56098
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 2]]
56099
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556]  (0.0ms) SAVEPOINT active_record_1
56100
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56102
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556]  (0.0ms) SAVEPOINT active_record_1
56103
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56105
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] Pulitzer::ContentElementType Load (0.0ms) 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]  (0.0ms) SAVEPOINT active_record_1
56107
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] SQL (0.1ms) 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]  (0.1ms) RELEASE SAVEPOINT active_record_1
56109
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556]  (0.0ms) SAVEPOINT active_record_1
56110
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] SQL (0.0ms) 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.056600"], ["id", 6]]
56111
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556]  (0.0ms) RELEASE SAVEPOINT active_record_1
56112
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] Pulitzer::FreeFormSection Load (0.0ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 2]]
56113
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] Pulitzer::PostTag Load (0.0ms) 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]  (0.0ms) SAVEPOINT active_record_1
56115
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56117
+ [ActiveJob] [Pulitzer::CloneVersionJob] [4e1f22c0-9e45-408f-b725-0b2115625556] Performed Pulitzer::CloneVersionJob from Inline(default) in 21.72ms
56118
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
56119
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 3]]
56120
+ Pulitzer::Post Load (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
56121
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
56122
+ Pulitzer::Version Load (0.0ms) 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
+ Pulitzer::Version Load (0.1ms) 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]]
56124
+ Pulitzer::Version Load (0.0ms) 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
+  (0.0ms) SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? [["version_id", 3]]
56126
+  (0.6ms) rollback transaction
56127
+  (0.1ms) begin transaction
56128
+  (0.0ms) commit transaction
56129
+  (0.0ms) begin transaction
56130
+  (0.0ms) SAVEPOINT active_record_1
56131
+ SQL (0.2ms) 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.073654"], ["updated_at", "2016-07-05 17:34:47.073654"]]
56132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56133
+  (0.0ms) SAVEPOINT active_record_1
56134
+ Pulitzer::Post Exists (0.1ms) 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
+ SQL (0.4ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56138
+  (0.0ms) SAVEPOINT active_record_1
56139
+ SQL (0.1ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.079888"], ["updated_at", "2016-07-05 17:34:47.079888"]]
56140
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56141
+  (0.0ms) SAVEPOINT active_record_1
56142
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 16' LIMIT 1
56143
+ SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 16"], ["created_at", "2016-07-05 17:34:47.083091"], ["updated_at", "2016-07-05 17:34:47.083091"]]
56144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56145
+  (0.0ms) SAVEPOINT active_record_1
56146
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56148
+  (0.0ms) SAVEPOINT active_record_1
56149
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 17' LIMIT 1
56150
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56152
+  (0.0ms) SAVEPOINT active_record_1
56153
+ SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_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"], ["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56155
+  (0.0ms) SAVEPOINT active_record_1
56156
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 18' LIMIT 1
56157
+ SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 18"], ["created_at", "2016-07-05 17:34:47.092049"], ["updated_at", "2016-07-05 17:34:47.092049"]]
56158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56159
+  (0.0ms) SAVEPOINT active_record_1
56160
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56162
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
56163
+  (0.1ms) SAVEPOINT active_record_1
56164
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56166
+ Pulitzer::Tag Load (0.0ms) 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
+  (0.0ms) SAVEPOINT active_record_1
56168
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56170
+ [ActiveJob] Enqueued Pulitzer::CloneVersionJob (Job ID: c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6) to Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
56171
+ [ActiveJob] Pulitzer::Version Load (0.0ms) 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] Pulitzer::Post Load (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["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] Pulitzer::Version Load (0.0ms) 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] Pulitzer::ContentElement Load (0.0ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 2]]
56178
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] Pulitzer::ContentElementType Load (0.0ms) 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]  (0.0ms) SAVEPOINT active_record_1
56180
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56182
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6]  (0.0ms) SAVEPOINT active_record_1
56183
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] SQL (0.1ms) 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.105704"], ["id", 4]]
56184
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6]  (0.0ms) RELEASE SAVEPOINT active_record_1
56185
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 2]]
56186
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6]  (0.0ms) SAVEPOINT active_record_1
56187
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] SQL (0.1ms) 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"]]
56188
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6]  (0.0ms) RELEASE SAVEPOINT active_record_1
56189
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6]  (0.0ms) SAVEPOINT active_record_1
56190
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56192
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] Pulitzer::ContentElementType Load (0.0ms) 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]  (0.0ms) SAVEPOINT active_record_1
56194
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56196
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6]  (0.0ms) SAVEPOINT active_record_1
56197
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] SQL (0.1ms) 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.114503"], ["id", 6]]
56198
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6]  (0.1ms) RELEASE SAVEPOINT active_record_1
56199
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] Pulitzer::FreeFormSection Load (0.0ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 2]]
56200
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] Pulitzer::PostTag Load (0.0ms) 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]  (0.0ms) SAVEPOINT active_record_1
56202
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56204
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c0128e5d-69ac-4833-b60d-9e0ef8c1d8c6] Performed Pulitzer::CloneVersionJob from Inline(default) in 21.12ms
56205
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
56206
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 3]]
56207
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 2]]
56208
+ Pulitzer::Post Load (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
56209
+ Pulitzer::Version Load (0.0ms) 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
+ Pulitzer::Post Load (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
56211
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
56212
+  (0.1ms) SAVEPOINT active_record_1
56213
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56215
+  (0.1ms) SAVEPOINT active_record_1
56216
+ SQL (0.1ms) 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.127697"], ["updated_at", "2016-07-05 17:34:47.127697"]]
56217
+  (0.0ms) 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] Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["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] Pulitzer::Post Load (0.0ms) 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] Pulitzer::Version Load (0.0ms) 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]]
56225
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] Pulitzer::ContentElement Load (0.1ms) 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] Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
56227
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d]  (0.1ms) SAVEPOINT active_record_1
56228
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] SQL (0.1ms) 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"]]
56229
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d]  (0.0ms) RELEASE SAVEPOINT active_record_1
56230
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d]  (0.0ms) SAVEPOINT active_record_1
56231
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56233
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] Pulitzer::ContentElementType Load (0.0ms) 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]  (0.0ms) SAVEPOINT active_record_1
56235
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56237
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d]  (0.0ms) SAVEPOINT active_record_1
56238
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] SQL (0.1ms) 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.141077"], ["id", 8]]
56239
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d]  (0.0ms) RELEASE SAVEPOINT active_record_1
56240
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 3]]
56241
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d]  (0.0ms) SAVEPOINT active_record_1
56242
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] SQL (0.1ms) 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"]]
56243
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d]  (0.0ms) RELEASE SAVEPOINT active_record_1
56244
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d]  (0.1ms) SAVEPOINT active_record_1
56245
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56247
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] Pulitzer::FreeFormSection Load (0.0ms) 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] Pulitzer::PostTag Load (0.0ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? [["version_id", 2]]
56249
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d]  (0.0ms) SAVEPOINT active_record_1
56250
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] SQL (0.0ms) UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 0], ["updated_at", "2016-07-05 17:34:47.148074"], ["id", 4]]
56251
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d]  (0.0ms) RELEASE SAVEPOINT active_record_1
56252
+ [ActiveJob] [Pulitzer::CloneVersionJob] [a931436b-6a45-4e03-8186-b90001533b4d] Performed Pulitzer::CloneVersionJob from Inline(default) in 21.56ms
56253
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 3]]
56254
+ Pulitzer::Version Load (0.0ms) 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
+ Pulitzer::Version Load (0.0ms) 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]]
56256
+ Pulitzer::Version Load (0.0ms) 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
+  (0.0ms) SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? [["version_id", 4]]
56258
+  (0.7ms) rollback transaction
56259
+  (0.1ms) begin transaction
56260
+  (0.0ms) commit transaction
56261
+  (0.0ms) begin transaction
56262
+  (0.0ms) SAVEPOINT active_record_1
56263
+ SQL (0.2ms) 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.158828"], ["updated_at", "2016-07-05 17:34:47.158828"]]
56264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56265
+  (0.0ms) SAVEPOINT active_record_1
56266
+ Pulitzer::Post Exists (0.0ms) 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
+ SQL (0.3ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56270
+  (0.0ms) SAVEPOINT active_record_1
56271
+ SQL (0.2ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.164108"], ["updated_at", "2016-07-05 17:34:47.164108"]]
56272
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56273
+  (0.1ms) SAVEPOINT active_record_1
56274
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 19' LIMIT 1
56275
+ SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 19"], ["created_at", "2016-07-05 17:34:47.168330"], ["updated_at", "2016-07-05 17:34:47.168330"]]
56276
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56277
+  (0.0ms) SAVEPOINT active_record_1
56278
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56280
+  (0.0ms) SAVEPOINT active_record_1
56281
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 20' LIMIT 1
56282
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56284
+  (0.1ms) SAVEPOINT active_record_1
56285
+ SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56287
+  (0.0ms) SAVEPOINT active_record_1
56288
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 21' LIMIT 1
56289
+ SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 21"], ["created_at", "2016-07-05 17:34:47.186827"], ["updated_at", "2016-07-05 17:34:47.186827"]]
56290
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56291
+  (0.0ms) SAVEPOINT active_record_1
56292
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56294
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
56295
+  (0.0ms) SAVEPOINT active_record_1
56296
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56298
+ Pulitzer::Tag Load (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
56300
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56302
+ [ActiveJob] Enqueued Pulitzer::CloneVersionJob (Job ID: 5bce1acb-d2b4-4143-99c1-8c9ec2465a2a) to Inline(default) with arguments: gid://dummy/Pulitzer::Version/2
56303
+ [ActiveJob] Pulitzer::Version Load (0.0ms) 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] Pulitzer::Post Load (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["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] Pulitzer::Version Load (0.1ms) 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] Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 2]]
56310
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] Pulitzer::ContentElementType Load (0.0ms) 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]  (0.1ms) SAVEPOINT active_record_1
56312
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56314
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a]  (0.0ms) SAVEPOINT active_record_1
56315
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] SQL (0.1ms) 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.204694"], ["id", 4]]
56316
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a]  (0.0ms) RELEASE SAVEPOINT active_record_1
56317
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 2]]
56318
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a]  (0.0ms) SAVEPOINT active_record_1
56319
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56321
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a]  (0.0ms) SAVEPOINT active_record_1
56322
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] SQL (0.0ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56324
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] Pulitzer::ContentElementType Load (0.0ms) 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]  (0.1ms) SAVEPOINT active_record_1
56326
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56328
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a]  (0.0ms) SAVEPOINT active_record_1
56329
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] SQL (0.1ms) 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.214596"], ["id", 6]]
56330
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a]  (0.0ms) RELEASE SAVEPOINT active_record_1
56331
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] Pulitzer::FreeFormSection Load (0.0ms) SELECT "pulitzer_free_form_sections".* FROM "pulitzer_free_form_sections" WHERE "pulitzer_free_form_sections"."version_id" = ? [["version_id", 2]]
56332
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] Pulitzer::PostTag Load (0.0ms) 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]  (0.0ms) SAVEPOINT active_record_1
56334
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] SQL (0.0ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56336
+ [ActiveJob] [Pulitzer::CloneVersionJob] [5bce1acb-d2b4-4143-99c1-8c9ec2465a2a] Performed Pulitzer::CloneVersionJob from Inline(default) in 24.43ms
56337
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
56338
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 3]]
56339
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 2]]
56340
+ Pulitzer::Post Load (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
56341
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
56342
+  (0.1ms) SAVEPOINT active_record_1
56343
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56345
+ Pulitzer::Version Load (0.0ms) 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
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 2]]
56347
+ Pulitzer::Post Load (0.0ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
56348
+ Pulitzer::Version Load (0.0ms) 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]]
56349
+ Pulitzer::Version Load (0.0ms) 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
+ Pulitzer::Version Load (0.0ms) 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]]
56351
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? [["version_id", 3]]
56352
+  (0.7ms) rollback transaction
56353
+  (0.1ms) begin transaction
56354
+  (0.0ms) commit transaction
56355
+  (0.0ms) begin transaction
56356
+  (0.0ms) SAVEPOINT active_record_1
56357
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The North Remembers' LIMIT 1
56358
+ SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The North Remembers"], ["created_at", "2016-07-05 17:34:47.234553"], ["updated_at", "2016-07-05 17:34:47.234553"]]
56359
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56360
+  (0.0ms) SAVEPOINT active_record_1
56361
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56363
+  (0.0ms) SAVEPOINT active_record_1
56364
+ Pulitzer::Post Exists (0.0ms) SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-8"]]
56365
+ SQL (0.1ms) 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
+ SQL (0.1ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.242083"], ["updated_at", "2016-07-05 17:34:47.242083"]]
56367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56368
+  (0.0ms) SAVEPOINT active_record_1
56369
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56371
+  (0.1ms) SAVEPOINT active_record_1
56372
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 22' LIMIT 1
56373
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56375
+  (0.0ms) SAVEPOINT active_record_1
56376
+ SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56378
+  (0.1ms) SAVEPOINT active_record_1
56379
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 23' LIMIT 1
56380
+ SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 23"], ["created_at", "2016-07-05 17:34:47.251458"], ["updated_at", "2016-07-05 17:34:47.251458"]]
56381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56382
+  (0.0ms) SAVEPOINT active_record_1
56383
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56385
+  (0.0ms) SAVEPOINT active_record_1
56386
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 24' LIMIT 1
56387
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56389
+  (0.0ms) SAVEPOINT active_record_1
56390
+ SQL (0.0ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "version_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56392
+  (0.1ms) SAVEPOINT active_record_1
56393
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56395
+  (0.0ms) SAVEPOINT active_record_1
56396
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The South Forgets' LIMIT 1
56397
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56399
+  (0.0ms) SAVEPOINT active_record_1
56400
+ SQL (0.1ms) 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", 2], ["created_at", "2016-07-05 17:34:47.269742"], ["updated_at", "2016-07-05 17:34:47.269742"]]
56401
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56402
+ Pulitzer::Tag Load (0.1ms) 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"]]
56403
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
56404
+  (0.0ms) SAVEPOINT active_record_1
56405
+ SQL (0.0ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56407
+  (0.0ms) SAVEPOINT active_record_1
56408
+ SQL (0.1ms) 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.276749"], ["updated_at", "2016-07-05 17:34:47.276749"]]
56409
+  (0.1ms) 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] Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["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] Pulitzer::Post Load (0.0ms) 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] Pulitzer::Version Load (0.0ms) 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]]
56417
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] Pulitzer::ContentElement Load (0.0ms) 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] Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]]
56419
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9]  (0.0ms) SAVEPOINT active_record_1
56420
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56422
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9]  (0.0ms) SAVEPOINT active_record_1
56423
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56425
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] Pulitzer::ContentElementType Load (0.1ms) 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]  (0.1ms) SAVEPOINT active_record_1
56427
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56429
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9]  (0.0ms) SAVEPOINT active_record_1
56430
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] SQL (0.1ms) 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.290217"], ["id", 5]]
56431
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9]  (0.0ms) RELEASE SAVEPOINT active_record_1
56432
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] Pulitzer::ContentElementType Load (0.0ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 3]]
56433
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9]  (0.0ms) SAVEPOINT active_record_1
56434
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] SQL (0.1ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "image", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56436
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9]  (0.0ms) SAVEPOINT active_record_1
56437
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] SQL (0.0ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56439
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] Pulitzer::FreeFormSection Load (0.0ms) 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] Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? [["version_id", 2]]
56441
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9]  (0.1ms) SAVEPOINT active_record_1
56442
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] SQL (0.1ms) 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", 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56444
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9]  (0.1ms) SAVEPOINT active_record_1
56445
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] SQL (0.1ms) 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]  (0.0ms) RELEASE SAVEPOINT active_record_1
56447
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9]  (0.0ms) SAVEPOINT active_record_1
56448
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] SQL (0.0ms) UPDATE "pulitzer_versions" SET "status" = ?, "updated_at" = ? WHERE "pulitzer_versions"."id" = ? [["status", 0], ["updated_at", "2016-07-05 17:34:47.301237"], ["id", 3]]
56449
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9]  (0.0ms) RELEASE SAVEPOINT active_record_1
56450
+ [ActiveJob] [Pulitzer::CloneVersionJob] [c044d505-1cd2-4a44-9770-340fc0c5a4b9] Performed Pulitzer::CloneVersionJob from Inline(default) in 26.6ms
56451
+ Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]]
56452
+ Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 3]]
56453
+  (0.7ms) rollback transaction
56454
+  (0.1ms) begin transaction
56455
+  (0.0ms) commit transaction
56456
+  (0.0ms) begin transaction
56457
+  (0.1ms) rollback transaction
56458
+  (0.0ms) begin transaction
56459
+  (0.0ms) commit transaction
56460
+  (0.0ms) begin transaction
56461
+  (0.0ms) SAVEPOINT active_record_1
56462
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 25' LIMIT 1
56463
+ SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 25"], ["created_at", "2016-07-05 17:34:47.314197"], ["updated_at", "2016-07-05 17:34:47.314197"]]
56464
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56465
+  (0.4ms) rollback transaction
56466
+  (0.1ms) begin transaction
56467
+  (0.0ms) commit transaction
56468
+  (0.0ms) begin transaction
56469
+  (0.0ms) rollback transaction
56470
+  (0.0ms) begin transaction
56471
+  (0.0ms) commit transaction
56472
+  (0.2ms) begin transaction
56473
+  (0.0ms) rollback transaction
56474
+  (0.1ms) begin transaction
56475
+  (0.0ms) commit transaction
56476
+  (0.0ms) begin transaction
56477
+  (0.0ms) rollback transaction
56478
+  (0.0ms) begin transaction
56479
+  (0.1ms) commit transaction
56480
+  (0.0ms) begin transaction
56481
+  (0.0ms) rollback transaction
56482
+  (0.0ms) begin transaction
56483
+  (0.0ms) commit transaction
56484
+  (0.0ms) begin transaction
56485
+  (0.0ms) SAVEPOINT active_record_1
56486
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 26' LIMIT 1
56487
+ SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 26"], ["created_at", "2016-07-05 17:34:47.325031"], ["updated_at", "2016-07-05 17:34:47.325031"]]
56488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56489
+  (0.5ms) rollback transaction
56490
+  (0.1ms) begin transaction
56491
+  (0.0ms) commit transaction
56492
+  (0.0ms) begin transaction
56493
+  (0.0ms) SAVEPOINT active_record_1
56494
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 27' LIMIT 1
56495
+ SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 27"], ["created_at", "2016-07-05 17:34:47.330118"], ["updated_at", "2016-07-05 17:34:47.330118"]]
56496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56497
+  (0.4ms) rollback transaction
56498
+  (0.1ms) begin transaction
56499
+  (0.0ms) commit transaction
56500
+  (0.0ms) begin transaction
56501
+  (0.0ms) SAVEPOINT active_record_1
56502
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 28' LIMIT 1
56503
+ SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 28"], ["created_at", "2016-07-05 17:34:47.334856"], ["updated_at", "2016-07-05 17:34:47.334856"]]
56504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56505
+  (0.4ms) rollback transaction
56506
+  (0.1ms) begin transaction
56507
+  (0.0ms) commit transaction
56508
+  (0.0ms) begin transaction
56509
+  (0.0ms) SAVEPOINT active_record_1
56510
+ Pulitzer::ContentElementType Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Video' LIMIT 1
56511
+ SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Video"], ["created_at", "2016-07-05 17:34:47.340103"], ["updated_at", "2016-07-05 17:34:47.340103"]]
56512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56513
+  (0.0ms) SAVEPOINT active_record_1
56514
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56516
+  (0.6ms) rollback transaction
56517
+  (0.1ms) begin transaction
56518
+  (0.1ms) commit transaction
56519
+  (0.0ms) begin transaction
56520
+  (0.1ms) SAVEPOINT active_record_1
56521
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Video' LIMIT 1
56522
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56524
+  (0.0ms) SAVEPOINT active_record_1
56525
+ SQL (0.4ms) INSERT INTO "pulitzer_content_elements" ("label", "body", "content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56527
+  (0.5ms) rollback transaction
56528
+  (0.1ms) begin transaction
56529
+  (0.0ms) commit transaction
56530
+  (0.0ms) begin transaction
56531
+  (0.0ms) SAVEPOINT active_record_1
56532
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 29' LIMIT 1
56533
+ SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 29"], ["created_at", "2016-07-05 17:34:47.357035"], ["updated_at", "2016-07-05 17:34:47.357035"]]
56534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56535
+  (0.4ms) rollback transaction
56536
+  (0.1ms) begin transaction
56537
+  (0.0ms) commit transaction
56538
+  (0.0ms) begin transaction
56539
+  (0.0ms) SAVEPOINT active_record_1
56540
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 30' LIMIT 1
56541
+ SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text 30"], ["created_at", "2016-07-05 17:34:47.361966"], ["updated_at", "2016-07-05 17:34:47.361966"]]
56542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56543
+  (0.3ms) rollback transaction
56544
+  (0.1ms) begin transaction
56545
+  (0.0ms) commit transaction
56546
+  (0.0ms) begin transaction
56547
+  (0.0ms) SAVEPOINT active_record_1
56548
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Image' LIMIT 1
56549
+ SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Image"], ["created_at", "2016-07-05 17:34:47.367627"], ["updated_at", "2016-07-05 17:34:47.367627"]]
56550
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56551
+  (0.4ms) rollback transaction
56552
+  (0.1ms) begin transaction
56553
+  (0.0ms) commit transaction
56554
+  (0.0ms) begin transaction
56555
+  (0.0ms) SAVEPOINT active_record_1
56556
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56558
+ Pulitzer::Post Exists (0.0ms) 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
+  (0.5ms) rollback transaction
56560
+  (0.1ms) begin transaction
56561
+  (0.0ms) commit transaction
56562
+  (0.0ms) begin transaction
56563
+  (0.1ms) rollback transaction
56564
+  (0.1ms) begin transaction
56565
+  (0.1ms) commit transaction
56566
+  (0.1ms) begin transaction
56567
+  (0.0ms) rollback transaction
56568
+  (0.0ms) begin transaction
56569
+  (0.0ms) commit transaction
56570
+  (0.0ms) begin transaction
56571
+  (0.0ms) SAVEPOINT active_record_1
56572
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56574
+  (0.0ms) SAVEPOINT active_record_1
56575
+ Pulitzer::Post Exists (0.0ms) SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "winterfell-news-10"]]
56576
+ SQL (0.5ms) 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
+ SQL (0.3ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.569362"], ["updated_at", "2016-07-05 17:34:47.569362"]]
56578
+  (0.2ms) RELEASE SAVEPOINT active_record_1
56579
+  (0.1ms) SAVEPOINT active_record_1
56580
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56582
+  (0.0ms) SAVEPOINT active_record_1
56583
+ SQL (0.1ms) INSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["status", 1], ["post_id", 1], ["created_at", "2016-07-05 17:34:47.576804"], ["updated_at", "2016-07-05 17:34:47.576804"]]
56584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56585
+ Pulitzer::Version Load (0.0ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? LIMIT 1 [["post_id", 1], ["status", 1]]
56586
+  (0.8ms) rollback transaction
56587
+  (0.1ms) begin transaction
56588
+  (0.0ms) commit transaction
56589
+  (0.0ms) begin transaction
56590
+  (0.1ms) SAVEPOINT active_record_1
56591
+ SQL (0.3ms) 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.584084"], ["updated_at", "2016-07-05 17:34:47.584084"]]
56592
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56593
+  (0.1ms) SAVEPOINT active_record_1
56594
+ Pulitzer::Post Exists (0.0ms) 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
+ SQL (0.3ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56598
+  (0.6ms) rollback transaction
56599
+  (0.1ms) begin transaction
56600
+  (0.0ms) commit transaction
56601
+  (0.0ms) begin transaction
56602
+  (0.1ms) SAVEPOINT active_record_1
56603
+ SQL (0.3ms) 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.594933"], ["updated_at", "2016-07-05 17:34:47.594933"]]
56604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56605
+  (0.0ms) SAVEPOINT active_record_1
56606
+ Pulitzer::Post Exists (0.1ms) 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
+ SQL (0.4ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56610
+  (0.1ms) SAVEPOINT active_record_1
56611
+ Pulitzer::Post Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" != 1) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "the-new-king-in-the-north"]]
56612
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56614
+  (0.6ms) rollback transaction
56615
+  (0.1ms) begin transaction
56616
+  (0.0ms) commit transaction
56617
+  (0.0ms) begin transaction
56618
+  (0.0ms) SAVEPOINT active_record_1
56619
+ Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 25' LIMIT 1
56620
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56622
+  (0.0ms) SAVEPOINT active_record_1
56623
+ SQL (0.3ms) 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.613662"], ["updated_at", "2016-07-05 17:34:47.613662"]]
56624
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56625
+  (0.0ms) SAVEPOINT active_record_1
56626
+ Pulitzer::Post Exists (0.0ms) 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
+ SQL (0.1ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56630
+  (0.0ms) SAVEPOINT active_record_1
56631
+ SQL (0.1ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.619880"], ["updated_at", "2016-07-05 17:34:47.619880"]]
56632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56633
+  (0.7ms) rollback transaction
56634
+  (0.1ms) begin transaction
56635
+  (0.0ms) commit transaction
56636
+  (0.0ms) begin transaction
56637
+  (0.0ms) rollback transaction
56638
+  (0.1ms) begin transaction
56639
+  (0.0ms) commit transaction
56640
+  (0.0ms) begin transaction
56641
+  (0.0ms) rollback transaction
56642
+  (0.1ms) begin transaction
56643
+  (0.0ms) commit transaction
56644
+  (0.0ms) begin transaction
56645
+  (0.1ms) rollback transaction
56646
+  (0.1ms) begin transaction
56647
+  (0.0ms) commit transaction
56648
+  (0.0ms) begin transaction
56649
+  (0.0ms) rollback transaction
56650
+  (0.0ms) begin transaction
56651
+  (0.0ms) commit transaction
56652
+  (0.0ms) begin transaction
56653
+  (0.0ms) rollback transaction
56654
+  (0.0ms) begin transaction
56655
+  (0.0ms) commit transaction
56656
+  (0.0ms) begin transaction
56657
+  (0.0ms) SAVEPOINT active_record_1
56658
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56660
+  (0.1ms) SAVEPOINT active_record_1
56661
+ Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text 31' LIMIT 1
56662
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56664
+  (0.6ms) rollback transaction
56665
+  (0.1ms) begin transaction
56666
+  (0.0ms) commit transaction
56667
+  (0.0ms) begin transaction
56668
+  (0.0ms) rollback transaction
56669
+  (0.1ms) begin transaction
56670
+  (0.0ms) commit transaction
56671
+  (0.0ms) begin transaction
56672
+  (0.0ms) rollback transaction
56673
+  (0.0ms) begin transaction
56674
+  (0.1ms) commit transaction
56675
+  (0.0ms) begin transaction
56676
+  (0.0ms) rollback transaction
56677
+  (0.0ms) begin transaction
56678
+  (0.0ms) commit transaction
56679
+  (0.0ms) begin transaction
56680
+  (0.0ms) rollback transaction
56681
+  (0.1ms) begin transaction
56682
+  (0.1ms) commit transaction
56683
+  (0.1ms) begin transaction
56684
+  (0.1ms) rollback transaction
56685
+  (0.1ms) begin transaction
56686
+  (0.1ms) commit transaction
56687
+  (0.0ms) begin transaction
56688
+  (0.1ms) rollback transaction
56689
+  (0.1ms) begin transaction
56690
+  (0.1ms) commit transaction
56691
+  (0.1ms) begin transaction
56692
+  (0.1ms) rollback transaction
56693
+  (0.1ms) begin transaction
56694
+  (0.0ms) commit transaction
56695
+  (0.0ms) begin transaction
56696
+  (0.0ms) rollback transaction
56697
+  (0.0ms) begin transaction
56698
+  (0.0ms) commit transaction
56699
+  (0.0ms) begin transaction
56700
+  (0.1ms) rollback transaction
56701
+  (0.0ms) begin transaction
56702
+  (0.0ms) commit transaction
56703
+  (0.0ms) begin transaction
56704
+  (0.0ms) rollback transaction
56705
+  (0.0ms) begin transaction
56706
+  (0.0ms) commit transaction
56707
+  (0.0ms) begin transaction
56708
+  (0.0ms) rollback transaction
56709
+  (0.0ms) begin transaction
56710
+  (0.0ms) commit transaction
56711
+  (0.0ms) begin transaction
56712
+ Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 26' LIMIT 1
56713
+  (0.0ms) rollback transaction
56714
+  (0.0ms) begin transaction
56715
+  (0.0ms) commit transaction
56716
+  (0.0ms) begin transaction
56717
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" IS NULL LIMIT 1
56718
+  (0.1ms) rollback transaction
56719
+  (0.1ms) begin transaction
56720
+  (0.0ms) commit transaction
56721
+  (0.1ms) begin transaction
56722
+ Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."id" ASC LIMIT 1
56723
+  (0.1ms) SAVEPOINT active_record_1
56724
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56726
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'a' LIMIT 1
56727
+ Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'A' LIMIT 1
56728
+  (0.6ms) rollback transaction
56729
+  (0.1ms) begin transaction
56730
+  (0.1ms) commit transaction
56731
+  (0.1ms) begin transaction
56732
+  (0.0ms) rollback transaction
56733
+  (0.0ms) begin transaction
56734
+  (0.0ms) commit transaction
56735
+  (0.0ms) begin transaction
56736
+  (0.0ms) rollback transaction
56737
+  (0.1ms) begin transaction
56738
+  (0.0ms) commit transaction
56739
+  (0.0ms) begin transaction
56740
+  (0.0ms) SAVEPOINT active_record_1
56741
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 27' LIMIT 1
56742
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56744
+  (0.2ms) SAVEPOINT active_record_1
56745
+ Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 28' LIMIT 1
56746
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56748
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't'
56749
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't'
56750
+  (0.5ms) rollback transaction
56751
+  (0.1ms) begin transaction
56752
+  (0.0ms) commit transaction
56753
+  (0.0ms) begin transaction
56754
+  (0.0ms) SAVEPOINT active_record_1
56755
+ SQL (0.3ms) 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.725706"], ["updated_at", "2016-07-05 17:34:47.725706"]]
56756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56757
+  (0.0ms) SAVEPOINT active_record_1
56758
+ Pulitzer::Post Exists (0.0ms) 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
+ SQL (0.4ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56762
+  (0.0ms) SAVEPOINT active_record_1
56763
+ SQL (0.1ms) INSERT INTO "pulitzer_versions" ("status", "post_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["status", 1], ["post_id", 1], ["created_at", "2016-07-05 17:34:47.733485"], ["updated_at", "2016-07-05 17:34:47.733485"]]
56764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56765
+  (0.0ms) SAVEPOINT active_record_1
56766
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 29' LIMIT 1
56767
+ SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 29"], ["created_at", "2016-07-05 17:34:47.735552"], ["updated_at", "2016-07-05 17:34:47.735552"]]
56768
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56769
+  (0.0ms) SAVEPOINT active_record_1
56770
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56772
+ Pulitzer::Post Exists (0.2ms) 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
+  (0.7ms) rollback transaction
56774
+  (0.0ms) begin transaction
56775
+  (0.0ms) commit transaction
56776
+  (0.0ms) begin transaction
56777
+  (0.1ms) SAVEPOINT active_record_1
56778
+ Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 30' LIMIT 1
56779
+ SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56781
+  (0.1ms) SAVEPOINT active_record_1
56782
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 31' LIMIT 1
56783
+ SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 31"], ["created_at", "2016-07-05 17:34:47.749479"], ["updated_at", "2016-07-05 17:34:47.749479"]]
56784
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56785
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f'
56786
+ Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f'
56787
+  (0.6ms) rollback transaction
56788
+  (0.1ms) begin transaction
56789
+  (0.0ms) commit transaction
56790
+  (0.0ms) begin transaction
56791
+  (0.0ms) SAVEPOINT active_record_1
56792
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 32' LIMIT 1
56793
+ SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 32"], ["created_at", "2016-07-05 17:34:47.756047"], ["updated_at", "2016-07-05 17:34:47.756047"]]
56794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56795
+  (0.0ms) SAVEPOINT active_record_1
56796
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 33' LIMIT 1
56797
+ SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
+ SQL (0.1ms) UPDATE "pulitzer_tags" SET "updated_at" = '2016-07-05 17:34:47.759680' WHERE "pulitzer_tags"."id" = ? [["id", 1]]
56799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56800
+  (0.0ms) SAVEPOINT active_record_1
56801
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 34' LIMIT 1
56802
+ SQL (0.1ms) 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
+ SQL (0.1ms) UPDATE "pulitzer_tags" SET "updated_at" = '2016-07-05 17:34:47.762905' WHERE "pulitzer_tags"."id" = ? [["id", 1]]
56804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56805
+ Pulitzer::Tag Exists (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? AND "pulitzer_tags"."id" = ? [["parent_id", 1], ["id", 2]]
56806
+ Pulitzer::Tag Exists (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? AND "pulitzer_tags"."id" = ? [["parent_id", 1], ["id", 3]]
56807
+  (0.6ms) rollback transaction
56808
+  (0.1ms) begin transaction
56809
+  (0.0ms) commit transaction
56810
+  (0.0ms) begin transaction
56811
+  (0.0ms) SAVEPOINT active_record_1
56812
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 35' LIMIT 1
56813
+ SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56815
+  (0.0ms) SAVEPOINT active_record_1
56816
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 36' LIMIT 1
56817
+ SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 36"], ["created_at", "2016-07-05 17:34:47.772441"], ["updated_at", "2016-07-05 17:34:47.772441"]]
56818
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56819
+  (0.0ms) SAVEPOINT active_record_1
56820
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 37' LIMIT 1
56821
+ SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) UPDATE "pulitzer_tags" SET "updated_at" = '2016-07-05 17:34:47.775851' WHERE "pulitzer_tags"."id" = ? [["id", 1]]
56823
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56824
+  (0.7ms) rollback transaction
56825
+  (0.1ms) begin transaction
56826
+  (0.0ms) commit transaction
56827
+  (0.0ms) begin transaction
56828
+  (0.0ms) SAVEPOINT active_record_1
56829
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 38' LIMIT 1
56830
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56832
+  (0.1ms) SAVEPOINT active_record_1
56833
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 39' LIMIT 1
56834
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56836
+  (0.0ms) SAVEPOINT active_record_1
56837
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 40' LIMIT 1
56838
+ SQL (0.1ms) 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
+ SQL (0.2ms) UPDATE "pulitzer_tags" SET "updated_at" = '2016-07-05 17:34:47.786951' WHERE "pulitzer_tags"."id" = ? [["id", 1]]
56840
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56841
+  (0.6ms) rollback transaction
56842
+  (0.1ms) begin transaction
56843
+  (0.0ms) commit transaction
56844
+  (0.0ms) begin transaction
56845
+  (0.0ms) SAVEPOINT active_record_1
56846
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 41' LIMIT 1
56847
+ SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56849
+  (0.0ms) SAVEPOINT active_record_1
56850
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 42' LIMIT 1
56851
+ SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "The north 42"], ["created_at", "2016-07-05 17:34:47.794469"], ["updated_at", "2016-07-05 17:34:47.794469"]]
56852
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56853
+  (0.0ms) SAVEPOINT active_record_1
56854
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 43' LIMIT 1
56855
+ SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) UPDATE "pulitzer_tags" SET "updated_at" = '2016-07-05 17:34:47.798343' WHERE "pulitzer_tags"."id" = ? [["id", 1]]
56857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56858
+  (0.6ms) rollback transaction
56859
+  (0.1ms) begin transaction
56860
+  (0.0ms) commit transaction
56861
+  (0.0ms) begin transaction
56862
+  (0.1ms) SAVEPOINT active_record_1
56863
+ SQL (0.3ms) 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.803793"], ["updated_at", "2016-07-05 17:34:47.803793"]]
56864
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56865
+  (0.1ms) SAVEPOINT active_record_1
56866
+ Pulitzer::Post Exists (0.1ms) 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
+ SQL (0.4ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56870
+  (0.6ms) rollback transaction
56871
+  (0.1ms) begin transaction
56872
+  (0.0ms) commit transaction
56873
+  (0.0ms) begin transaction
56874
+  (0.1ms) rollback transaction
56875
+  (0.1ms) begin transaction
56876
+  (0.0ms) commit transaction
56877
+  (0.0ms) begin transaction
56878
+  (0.1ms) rollback transaction
56879
+  (0.1ms) begin transaction
56880
+  (0.1ms) commit transaction
56881
+  (0.1ms) begin transaction
56882
+  (0.0ms) rollback transaction
56883
+  (0.1ms) begin transaction
56884
+  (0.1ms) commit transaction
56885
+  (0.0ms) begin transaction
56886
+  (0.1ms) rollback transaction
56887
+  (0.1ms) begin transaction
56888
+  (0.1ms) commit transaction
56889
+  (0.1ms) begin transaction
56890
+  (0.0ms) rollback transaction
56891
+  (0.1ms) begin transaction
56892
+  (0.0ms) commit transaction
56893
+  (0.0ms) begin transaction
56894
+  (0.1ms) rollback transaction
56895
+  (0.1ms) begin transaction
56896
+  (0.1ms) commit transaction
56897
+  (0.0ms) begin transaction
56898
+  (0.0ms) SAVEPOINT active_record_1
56899
+ Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'The north 44' LIMIT 1
56900
+ SQL (0.3ms) 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
+  (0.3ms) RELEASE SAVEPOINT active_record_1
56902
+  (0.0ms) SAVEPOINT active_record_1
56903
+ SQL (0.4ms) 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.834741"], ["updated_at", "2016-07-05 17:34:47.834741"]]
56904
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56905
+  (0.0ms) SAVEPOINT active_record_1
56906
+ Pulitzer::Post Exists (0.0ms) 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
+ SQL (0.1ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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
+ SQL (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56910
+  (0.0ms) SAVEPOINT active_record_1
56911
+ SQL (0.1ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-07-05 17:34:47.841872"], ["updated_at", "2016-07-05 17:34:47.841872"]]
56912
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56913
+  (0.0ms) SAVEPOINT active_record_1
56914
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56916
+  (0.1ms) 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
+  (0.1ms) SELECT COUNT(*) FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? AND "pulitzer_post_tags"."label_id" = ? [["version_id", 2], ["label_type", "Pulitzer::Tag"], ["label_id", 1]]
56918
+ Pulitzer::PostTag Load (0.1ms) 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
+ Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]
56920
+  (0.8ms) rollback transaction