ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (2.1ms) CREATE TABLE "portfolio_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) select sqlite_version(*)  (0.9ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_email" ON "portfolio_admin_users" ("email")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'  (0.6ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_reset_password_token" ON "portfolio_admin_users" ("reset_password_token")  (0.6ms) CREATE TABLE "portfolio_site_item_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE TABLE "portfolio_site_item_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_item_id" integer, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.6ms) CREATE INDEX "index_portfolio_site_item_images_on_site_item_id" ON "portfolio_site_item_images" ("site_item_id")  (0.6ms) CREATE TABLE "portfolio_site_item_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.7ms) CREATE TABLE "portfolio_site_item_tags_items" ("site_item_id" integer, "site_item_tag_id" integer)  (0.6ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_id" ON "portfolio_site_item_tags_items" ("site_item_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'  (0.6ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_tag_id" ON "portfolio_site_item_tags_items" ("site_item_tag_id")  (0.6ms) CREATE TABLE "portfolio_site_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.5ms) CREATE INDEX "index_portfolio_site_item_types_on_name" ON "portfolio_site_item_types" ("name")  (0.8ms) CREATE TABLE "portfolio_site_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer NOT NULL, "site_item_type_id" integer NOT NULL, "title" varchar, "body" text, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "site_item_category_id" integer, "featured" boolean DEFAULT 'f', "public" boolean DEFAULT 'f', "type" varchar)  (0.6ms) CREATE INDEX "index_portfolio_site_items_on_site_id" ON "portfolio_site_items" ("site_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index'  (0.6ms) CREATE INDEX "index_portfolio_site_items_on_site_item_type_id" ON "portfolio_site_items" ("site_item_type_id")  (0.6ms) CREATE TABLE "portfolio_site_menu_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "name" varchar, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE INDEX "index_portfolio_site_menu_links_on_site_id" ON "portfolio_site_menu_links" ("site_id")  (0.7ms) CREATE TABLE "portfolio_site_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "social_link_id" integer, "user_name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.9ms) CREATE INDEX "index_portfolio_site_social_links_on_site_id" ON "portfolio_site_social_links" ("site_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'  (0.6ms) CREATE INDEX "index_portfolio_site_social_links_on_social_link_id" ON "portfolio_site_social_links" ("social_link_id")  (0.6ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE INDEX "index_portfolio_sites_on_key" ON "portfolio_sites" ("key")  (0.8ms) CREATE TABLE "portfolio_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "url_pattern" varchar, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20160126162607') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePortfolioTables (20150714235507)  (0.1ms) begin transaction  (0.1ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQLite3::SQLException: table "portfolio_sites" already exists: CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePortfolioTables (20150714235507)  (0.1ms) begin transaction  (0.1ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQLite3::SQLException: table "portfolio_sites" already exists: CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) rollback transaction  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePortfolioTables (20150714235507)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_portfolio_sites_on_key" ON "portfolio_sites" ("key")  (0.1ms) CREATE TABLE "portfolio_site_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_portfolio_site_item_types_on_name" ON "portfolio_site_item_types" ("name")  (0.1ms) CREATE TABLE "portfolio_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "url_pattern" varchar, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "portfolio_site_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "social_link_id" integer, "user_name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_site_id" ON "portfolio_site_social_links" ("site_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_social_link_id" ON "portfolio_site_social_links" ("social_link_id")  (0.1ms) CREATE TABLE "portfolio_site_menu_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "name" varchar, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_menu_links_on_site_id" ON "portfolio_site_menu_links" ("site_id")  (0.1ms) CREATE TABLE "portfolio_site_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer NOT NULL, "site_item_type_id" integer NOT NULL, "title" varchar, "body" text, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_items_on_site_id" ON "portfolio_site_items" ("site_id")  (0.0ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index'   (0.1ms) CREATE INDEX "index_portfolio_site_items_on_site_item_type_id" ON "portfolio_site_items" ("site_item_type_id")  (0.1ms) CREATE TABLE "portfolio_site_item_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_item_id" integer, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_item_images_on_site_item_id" ON "portfolio_site_item_images" ("site_item_id") Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43543-rsssek.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43543-966e13.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43543-966e13.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43543-966e13.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/cff54ff7dfe62453c1fd102501fc4a3620160126-43543-1r82jwp' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43543-966e13.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43543-966e13.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43543-966e13.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/cff54ff7dfe62453c1fd102501fc4a3620160126-43543-vf3zv7' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43543-uoxd6g.png' SQL (0.3ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Github"], ["url_pattern", "http://github.com/[user_name]"], ["image_file_name", "github.png"], ["image_content_type", "image/png"], ["image_file_size", 1609], ["image_updated_at", "2016-01-26 16:30:38.477121"], ["created_at", "2016-01-26 16:30:38.610420"], ["updated_at", "2016-01-26 16:30:38.610420"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43543-1oig130.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43543-1jfeoso.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43543-1jfeoso.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43543-1jfeoso.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/6b4896a3a3edc58d06a8ff00d45b44cb20160126-43543-bv3abc' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43543-1jfeoso.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43543-1jfeoso.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43543-1jfeoso.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/6b4896a3a3edc58d06a8ff00d45b44cb20160126-43543-1pcfm0t' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43543-e5ielw.png' SQL (0.1ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Twitter"], ["url_pattern", "http://twitter.com/[user_name]"], ["image_file_name", "twitter.png"], ["image_content_type", "image/png"], ["image_file_size", 1085], ["image_updated_at", "2016-01-26 16:30:38.622887"], ["created_at", "2016-01-26 16:30:38.733382"], ["updated_at", "2016-01-26 16:30:38.733382"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43543-ad15el.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43543-1xhcxb4.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43543-1xhcxb4.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43543-1xhcxb4.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/c1468d46aaa5a1748b8a5907921f56de20160126-43543-a6i4u8' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43543-1xhcxb4.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43543-1xhcxb4.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43543-1xhcxb4.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/c1468d46aaa5a1748b8a5907921f56de20160126-43543-f5jiip' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43543-174ol7e.png' SQL (0.1ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Linkedin"], ["url_pattern", "http://www.linkedin.com/in/[user_name]"], ["image_file_name", "linkedin.png"], ["image_content_type", "image/png"], ["image_file_size", 959], ["image_updated_at", "2016-01-26 16:30:38.745298"], ["created_at", "2016-01-26 16:30:38.846600"], ["updated_at", "2016-01-26 16:30:38.846600"]] SQL (0.2ms) INSERT INTO "portfolio_site_item_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "projects"], ["created_at", "2016-01-26 16:30:38.860297"], ["updated_at", "2016-01-26 16:30:38.860297"]] SQL (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150714235507"]]  (0.8ms) commit transaction Migrating to DeviseCreatePortfolioAdminUsers (20150916001106)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_email" ON "portfolio_admin_users" ("email")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'  (0.1ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_reset_password_token" ON "portfolio_admin_users" ("reset_password_token") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150916001106"]]  (0.6ms) commit transaction Migrating to CreatePortfolioAdminSiteItemCategories (20151124202355)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_site_item_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124202355"]]  (1.2ms) commit transaction Migrating to AddSiteItemCategoryIdToSiteItem (20151124210602)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "site_item_category_id" integer SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124210602"]]  (0.5ms) commit transaction Migrating to AddFeaturedToSiteItem (20151125132700)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "featured" boolean DEFAULT 'f' SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125132700"]]  (0.6ms) commit transaction Migrating to CreatePortfolioSiteItemTags (20151125141154)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "portfolio_site_item_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125141154"]]  (0.6ms) commit transaction Migrating to CreatePortfolioSiteItemTagsItems (20151125151535)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "portfolio_site_item_tags_items" ("site_item_id" integer, "site_item_tag_id" integer)   (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_id" ON "portfolio_site_item_tags_items" ("site_item_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'   (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_tag_id" ON "portfolio_site_item_tags_items" ("site_item_tag_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125151535"]]  (0.6ms) commit transaction Migrating to AddPublicToPortfolioSiteItem (20151203105347)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "public" boolean DEFAULT 'f' SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151203105347"]]  (0.5ms) commit transaction Migrating to AddTypeToSiteItem (20160126162607)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "type" varchar SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160126162607"]]  (0.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_types_on_name' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_types_on_name' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_items_on_site_item_type_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_items_on_site_item_type_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_sites_on_key' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_sites_on_key' AND type='index'  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:30:56.053106"], ["updated_at", "2016-01-26 16:30:56.053106"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Portfolio::SiteItemType Load (0.1ms) SELECT "portfolio_site_item_types".* FROM "portfolio_site_item_types" WHERE "portfolio_site_item_types"."name" = ? LIMIT 1 [["name", "children"]] SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:30:56.077511"], ["updated_at", "2016-01-26 16:30:56.077511"]] SQLite3::ConstraintException: NOT NULL constraint failed: portfolio_site_items.site_item_type_id: INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePortfolioTables (20150714235507)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_portfolio_sites_on_key" ON "portfolio_sites" ("key")  (0.1ms) CREATE TABLE "portfolio_site_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_portfolio_site_item_types_on_name" ON "portfolio_site_item_types" ("name")  (0.1ms) CREATE TABLE "portfolio_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "url_pattern" varchar, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "portfolio_site_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "social_link_id" integer, "user_name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_site_id" ON "portfolio_site_social_links" ("site_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_social_link_id" ON "portfolio_site_social_links" ("social_link_id")  (0.1ms) CREATE TABLE "portfolio_site_menu_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "name" varchar, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_menu_links_on_site_id" ON "portfolio_site_menu_links" ("site_id")  (0.1ms) CREATE TABLE "portfolio_site_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer NOT NULL, "title" varchar, "body" text, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_items_on_site_id" ON "portfolio_site_items" ("site_id")  (0.1ms) CREATE TABLE "portfolio_site_item_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_item_id" integer, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_item_images_on_site_item_id" ON "portfolio_site_item_images" ("site_item_id") Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43590-1inh6ep.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43590-nn7jjo.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43590-nn7jjo.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43590-nn7jjo.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/80d2926030e09cf0d60608187b09682a20160126-43590-bypw2f' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43590-nn7jjo.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43590-nn7jjo.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43590-nn7jjo.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/80d2926030e09cf0d60608187b09682a20160126-43590-sdz0bj' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-43590-182x3ab.png' SQL (0.2ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Github"], ["url_pattern", "http://github.com/[user_name]"], ["image_file_name", "github.png"], ["image_content_type", "image/png"], ["image_file_size", 1609], ["image_updated_at", "2016-01-26 16:32:43.077970"], ["created_at", "2016-01-26 16:32:43.192017"], ["updated_at", "2016-01-26 16:32:43.192017"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43590-1jc1tvu.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43590-j7hw4h.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43590-j7hw4h.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43590-j7hw4h.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/93408ddf0f7577ffb1dad1e9bfe908eb20160126-43590-657pb7' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43590-j7hw4h.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43590-j7hw4h.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43590-j7hw4h.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/93408ddf0f7577ffb1dad1e9bfe908eb20160126-43590-lyz1t1' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-43590-1oppwxs.png' SQL (0.1ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Twitter"], ["url_pattern", "http://twitter.com/[user_name]"], ["image_file_name", "twitter.png"], ["image_content_type", "image/png"], ["image_file_size", 1085], ["image_updated_at", "2016-01-26 16:32:43.201295"], ["created_at", "2016-01-26 16:32:43.308620"], ["updated_at", "2016-01-26 16:32:43.308620"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43590-1bxse4c.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43590-ov2t0k.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43590-ov2t0k.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43590-ov2t0k.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/01080c65273508c2622b9bae0f66284520160126-43590-13nkccx' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43590-ov2t0k.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43590-ov2t0k.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43590-ov2t0k.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/01080c65273508c2622b9bae0f66284520160126-43590-ptsdr7' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-43590-1xdezry.png' SQL (0.1ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Linkedin"], ["url_pattern", "http://www.linkedin.com/in/[user_name]"], ["image_file_name", "linkedin.png"], ["image_content_type", "image/png"], ["image_file_size", 959], ["image_updated_at", "2016-01-26 16:32:43.317816"], ["created_at", "2016-01-26 16:32:43.424587"], ["updated_at", "2016-01-26 16:32:43.424587"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "projects"], ["created_at", "2016-01-26 16:32:43.440791"], ["updated_at", "2016-01-26 16:32:43.440791"]] SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150714235507"]]  (0.8ms) commit transaction Migrating to DeviseCreatePortfolioAdminUsers (20150916001106)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_email" ON "portfolio_admin_users" ("email")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'  (0.1ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_reset_password_token" ON "portfolio_admin_users" ("reset_password_token") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150916001106"]]  (0.7ms) commit transaction Migrating to CreatePortfolioAdminSiteItemCategories (20151124202355)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "portfolio_site_item_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124202355"]]  (1.4ms) commit transaction Migrating to AddSiteItemCategoryIdToSiteItem (20151124210602)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "site_item_category_id" integer SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124210602"]]  (0.7ms) commit transaction Migrating to AddFeaturedToSiteItem (20151125132700)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "featured" boolean DEFAULT 'f' SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125132700"]]  (0.6ms) commit transaction Migrating to CreatePortfolioSiteItemTags (20151125141154)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_site_item_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125141154"]]  (0.7ms) commit transaction Migrating to CreatePortfolioSiteItemTagsItems (20151125151535)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "portfolio_site_item_tags_items" ("site_item_id" integer, "site_item_tag_id" integer)   (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_id" ON "portfolio_site_item_tags_items" ("site_item_id")  (0.0ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'   (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_tag_id" ON "portfolio_site_item_tags_items" ("site_item_tag_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125151535"]]  (0.6ms) commit transaction Migrating to AddPublicToPortfolioSiteItem (20151203105347)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "public" boolean DEFAULT 'f' SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151203105347"]]  (0.5ms) commit transaction Migrating to AddTypeToSiteItem (20160126162607)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "type" varchar SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160126162607"]]  (0.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index'  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_types_on_name' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_types_on_name' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_sites_on_key' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_sites_on_key' AND type='index' ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:33:35.210344"], ["updated_at", "2016-01-26 16:33:35.210344"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Portfolio::SiteItemType Load (0.1ms) SELECT "portfolio_site_item_types".* FROM "portfolio_site_item_types" WHERE "portfolio_site_item_types"."name" = ? LIMIT 1 [["name", "children"]] SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:33:35.233723"], ["updated_at", "2016-01-26 16:33:35.233723"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:34:02.093433"], ["updated_at", "2016-01-26 16:34:02.093433"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Portfolio::SiteItemType Load (0.1ms) SELECT "portfolio_site_item_types".* FROM "portfolio_site_item_types" WHERE "portfolio_site_item_types"."name" = ? LIMIT 1 [["name", "children"]] SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:34:02.116143"], ["updated_at", "2016-01-26 16:34:02.116143"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:41:52.356763"], ["updated_at", "2016-01-26 16:41:52.356763"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:45:12.721551"], ["updated_at", "2016-01-26 16:45:12.721551"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:45:42.436828"], ["updated_at", "2016-01-26 16:45:42.436828"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:46:03.714568"], ["updated_at", "2016-01-26 16:46:03.714568"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:46:03.743099"], ["updated_at", "2016-01-26 16:46:03.743099"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:48:53.143596"], ["updated_at", "2016-01-26 16:48:53.143596"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:48:53.166577"], ["updated_at", "2016-01-26 16:48:53.166577"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:50:17.711745"], ["updated_at", "2016-01-26 16:50:17.711745"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:50:17.736928"], ["updated_at", "2016-01-26 16:50:17.736928"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:50:17.742465"], ["updated_at", "2016-01-26 16:50:17.742465"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test"], ["site_id", 1], ["created_at", "2016-01-26 16:50:17.744243"], ["updated_at", "2016-01-26 16:50:17.744243"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild')  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:51:03.694361"], ["updated_at", "2016-01-26 16:51:03.694361"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:51:03.718447"], ["updated_at", "2016-01-26 16:51:03.718447"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:51:03.723973"], ["updated_at", "2016-01-26 16:51:03.723973"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:51:03.725868"], ["updated_at", "2016-01-26 16:51:03.725868"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:51:03.727660"], ["updated_at", "2016-01-26 16:51:03.727660"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test"], ["site_id", 2], ["created_at", "2016-01-26 16:51:03.729130"], ["updated_at", "2016-01-26 16:51:03.729130"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild')  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:51:25.510524"], ["updated_at", "2016-01-26 16:51:25.510524"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:51:25.534133"], ["updated_at", "2016-01-26 16:51:25.534133"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:51:25.539181"], ["updated_at", "2016-01-26 16:51:25.539181"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:51:25.541078"], ["updated_at", "2016-01-26 16:51:25.541078"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:51:25.542925"], ["updated_at", "2016-01-26 16:51:25.542925"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test"], ["site_id", 2], ["created_at", "2016-01-26 16:51:25.544386"], ["updated_at", "2016-01-26 16:51:25.544386"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:59:59.036165"], ["updated_at", "2016-01-26 16:59:59.036165"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:59:59.059689"], ["updated_at", "2016-01-26 16:59:59.059689"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:59:59.064925"], ["updated_at", "2016-01-26 16:59:59.064925"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 16:59:59.066874"], ["updated_at", "2016-01-26 16:59:59.066874"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 16:59:59.068738"], ["updated_at", "2016-01-26 16:59:59.068738"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test"], ["site_id", 2], ["created_at", "2016-01-26 16:59:59.070205"], ["updated_at", "2016-01-26 16:59:59.070205"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 17:00:17.415185"], ["updated_at", "2016-01-26 17:00:17.415185"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 17:00:17.440424"], ["updated_at", "2016-01-26 17:00:17.440424"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 17:00:17.446092"], ["updated_at", "2016-01-26 17:00:17.446092"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 17:00:17.448089"], ["updated_at", "2016-01-26 17:00:17.448089"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 17:00:37.083777"], ["updated_at", "2016-01-26 17:00:37.083777"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 17:00:37.109460"], ["updated_at", "2016-01-26 17:00:37.109460"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 17:00:37.114783"], ["updated_at", "2016-01-26 17:00:37.114783"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 17:00:37.116530"], ["updated_at", "2016-01-26 17:00:37.116530"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 17:00:37.118869"], ["updated_at", "2016-01-26 17:00:37.118869"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-26 17:00:37.120233"], ["updated_at", "2016-01-26 17:00:37.120233"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 17:01:39.315255"], ["updated_at", "2016-01-26 17:01:39.315255"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 17:01:39.338823"], ["updated_at", "2016-01-26 17:01:39.338823"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 17:01:39.343848"], ["updated_at", "2016-01-26 17:01:39.343848"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 17:01:39.345597"], ["updated_at", "2016-01-26 17:01:39.345597"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 17:01:39.347714"], ["updated_at", "2016-01-26 17:01:39.347714"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-26 17:01:39.348965"], ["updated_at", "2016-01-26 17:01:39.348965"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.9ms) CREATE TABLE "portfolio_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) select sqlite_version(*)  (0.6ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_email" ON "portfolio_admin_users" ("email")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'  (0.6ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_reset_password_token" ON "portfolio_admin_users" ("reset_password_token")  (0.8ms) CREATE TABLE "portfolio_site_item_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE TABLE "portfolio_site_item_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_item_id" integer, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.6ms) CREATE INDEX "index_portfolio_site_item_images_on_site_item_id" ON "portfolio_site_item_images" ("site_item_id")  (0.6ms) CREATE TABLE "portfolio_site_item_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.6ms) CREATE TABLE "portfolio_site_item_tags_items" ("site_item_id" integer, "site_item_tag_id" integer)  (0.6ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_id" ON "portfolio_site_item_tags_items" ("site_item_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'  (0.6ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_tag_id" ON "portfolio_site_item_tags_items" ("site_item_tag_id")  (0.6ms) CREATE TABLE "portfolio_site_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE INDEX "index_portfolio_site_item_types_on_name" ON "portfolio_site_item_types" ("name")  (0.6ms) CREATE TABLE "portfolio_site_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer NOT NULL, "title" varchar, "body" text, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "site_item_category_id" integer, "featured" boolean DEFAULT 'f', "public" boolean DEFAULT 'f', "type" varchar)  (0.6ms) CREATE INDEX "index_portfolio_site_items_on_site_id" ON "portfolio_site_items" ("site_id")  (0.7ms) CREATE TABLE "portfolio_site_menu_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "name" varchar, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE INDEX "index_portfolio_site_menu_links_on_site_id" ON "portfolio_site_menu_links" ("site_id")  (0.6ms) CREATE TABLE "portfolio_site_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "social_link_id" integer, "user_name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE INDEX "index_portfolio_site_social_links_on_site_id" ON "portfolio_site_social_links" ("site_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'  (0.6ms) CREATE INDEX "index_portfolio_site_social_links_on_social_link_id" ON "portfolio_site_social_links" ("social_link_id")  (0.9ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.7ms) CREATE INDEX "index_portfolio_sites_on_key" ON "portfolio_sites" ("key")  (0.6ms) CREATE TABLE "portfolio_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "url_pattern" varchar, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20160126162607') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePortfolioTables (20150714235507)  (0.1ms) begin transaction  (0.1ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQLite3::SQLException: table "portfolio_sites" already exists: CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) rollback transaction  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePortfolioTables (20150714235507)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_portfolio_sites_on_key" ON "portfolio_sites" ("key")  (0.1ms) CREATE TABLE "portfolio_site_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_portfolio_site_item_types_on_name" ON "portfolio_site_item_types" ("name")  (0.1ms) CREATE TABLE "portfolio_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "url_pattern" varchar, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "portfolio_site_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "social_link_id" integer, "user_name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_site_id" ON "portfolio_site_social_links" ("site_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_social_link_id" ON "portfolio_site_social_links" ("social_link_id")  (0.1ms) CREATE TABLE "portfolio_site_menu_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "name" varchar, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_menu_links_on_site_id" ON "portfolio_site_menu_links" ("site_id")  (0.1ms) CREATE TABLE "portfolio_site_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer NOT NULL, "title" varchar, "body" text, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_items_on_site_id" ON "portfolio_site_items" ("site_id")  (0.1ms) CREATE TABLE "portfolio_site_item_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_item_id" integer, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_item_images_on_site_item_id" ON "portfolio_site_item_images" ("site_item_id") Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-49810-ec0xhv.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-49810-1dvlisd.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-49810-1dvlisd.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-49810-1dvlisd.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/d1b7f142c5a5c7e6524edce591e8b79420160126-49810-1rku5rw' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-49810-1dvlisd.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-49810-1dvlisd.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-49810-1dvlisd.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/d1b7f142c5a5c7e6524edce591e8b79420160126-49810-1a5pwfu' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-49810-1igyjs2.png' SQL (0.2ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Github"], ["url_pattern", "http://github.com/[user_name]"], ["image_file_name", "github.png"], ["image_content_type", "image/png"], ["image_file_size", 1609], ["image_updated_at", "2016-01-26 20:00:06.145885"], ["created_at", "2016-01-26 20:00:06.275408"], ["updated_at", "2016-01-26 20:00:06.275408"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-49810-1nrt6b7.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-49810-2f98eq.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-49810-2f98eq.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-49810-2f98eq.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/d750871e5503e6d4ab6b6b8e5edcdf5520160126-49810-18sw1da' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-49810-2f98eq.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-49810-2f98eq.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-49810-2f98eq.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/d750871e5503e6d4ab6b6b8e5edcdf5520160126-49810-i4mn7e' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-49810-1mfucej.png' SQL (0.1ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Twitter"], ["url_pattern", "http://twitter.com/[user_name]"], ["image_file_name", "twitter.png"], ["image_content_type", "image/png"], ["image_file_size", 1085], ["image_updated_at", "2016-01-26 20:00:06.285129"], ["created_at", "2016-01-26 20:00:06.398742"], ["updated_at", "2016-01-26 20:00:06.398742"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-49810-pq6jmn.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-49810-c9zdxh.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-49810-c9zdxh.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-49810-c9zdxh.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/dd534fe61302507ff7d018c09bf494f720160126-49810-1n2nm7y' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-49810-c9zdxh.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-49810-c9zdxh.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-49810-c9zdxh.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/dd534fe61302507ff7d018c09bf494f720160126-49810-1am7i0q' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-49810-jve2se.png' SQL (0.1ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Linkedin"], ["url_pattern", "http://www.linkedin.com/in/[user_name]"], ["image_file_name", "linkedin.png"], ["image_content_type", "image/png"], ["image_file_size", 959], ["image_updated_at", "2016-01-26 20:00:06.408368"], ["created_at", "2016-01-26 20:00:06.514673"], ["updated_at", "2016-01-26 20:00:06.514673"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150714235507"]]  (0.8ms) commit transaction Migrating to DeviseCreatePortfolioAdminUsers (20150916001106)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_email" ON "portfolio_admin_users" ("email")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'   (0.1ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_reset_password_token" ON "portfolio_admin_users" ("reset_password_token") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150916001106"]]  (0.8ms) commit transaction Migrating to CreatePortfolioAdminSiteItemCategories (20151124202355)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "portfolio_site_item_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124202355"]]  (0.6ms) commit transaction Migrating to AddSiteItemCategoryIdToSiteItem (20151124210602)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "site_item_category_id" integer SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124210602"]]  (0.5ms) commit transaction Migrating to AddFeaturedToSiteItem (20151125132700)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "featured" boolean DEFAULT 'f' SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125132700"]]  (0.8ms) commit transaction Migrating to CreatePortfolioSiteItemTags (20151125141154)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_site_item_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125141154"]]  (0.6ms) commit transaction Migrating to CreatePortfolioSiteItemTagsItems (20151125151535)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "portfolio_site_item_tags_items" ("site_item_id" integer, "site_item_tag_id" integer)  (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_id" ON "portfolio_site_item_tags_items" ("site_item_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'  (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_tag_id" ON "portfolio_site_item_tags_items" ("site_item_tag_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125151535"]]  (0.5ms) commit transaction Migrating to AddPublicToPortfolioSiteItem (20151203105347)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "public" boolean DEFAULT 'f' SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151203105347"]]  (0.5ms) commit transaction Migrating to AddTypeToSiteItem (20160126162607)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "type" varchar SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160126162607"]]  (0.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_types_on_name' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_types_on_name' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_sites_on_key' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_sites_on_key' AND type='index'  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_types_on_name' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_types_on_name' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_sites_on_key' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_sites_on_key' AND type='index'  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:00:19.378282"], ["updated_at", "2016-01-26 20:00:19.378282"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:00:19.402720"], ["updated_at", "2016-01-26 20:00:19.402720"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:00:19.407816"], ["updated_at", "2016-01-26 20:00:19.407816"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:00:19.409564"], ["updated_at", "2016-01-26 20:00:19.409564"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:00:19.411948"], ["updated_at", "2016-01-26 20:00:19.411948"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-26 20:00:19.413257"], ["updated_at", "2016-01-26 20:00:19.413257"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:00:19.418905"], ["updated_at", "2016-01-26 20:00:19.418905"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:00:19.420943"], ["updated_at", "2016-01-26 20:00:19.420943"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:00:37.993022"], ["updated_at", "2016-01-26 20:00:37.993022"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:00:38.017578"], ["updated_at", "2016-01-26 20:00:38.017578"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:00:38.022675"], ["updated_at", "2016-01-26 20:00:38.022675"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:00:38.024447"], ["updated_at", "2016-01-26 20:00:38.024447"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:00:38.026679"], ["updated_at", "2016-01-26 20:00:38.026679"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-26 20:00:38.027997"], ["updated_at", "2016-01-26 20:00:38.027997"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:00:38.034011"], ["updated_at", "2016-01-26 20:00:38.034011"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:00:38.035693"], ["updated_at", "2016-01-26 20:00:38.035693"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:02:37.536193"], ["updated_at", "2016-01-26 20:02:37.536193"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:02:37.563071"], ["updated_at", "2016-01-26 20:02:37.563071"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:02:37.569121"], ["updated_at", "2016-01-26 20:02:37.569121"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:02:37.570972"], ["updated_at", "2016-01-26 20:02:37.570972"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:02:37.573405"], ["updated_at", "2016-01-26 20:02:37.573405"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-26 20:02:37.575138"], ["updated_at", "2016-01-26 20:02:37.575138"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:02:37.582911"], ["updated_at", "2016-01-26 20:02:37.582911"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:02:37.586229"], ["updated_at", "2016-01-26 20:02:37.586229"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:02:37.589716"], ["updated_at", "2016-01-26 20:02:37.589716"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:02:37.591727"], ["updated_at", "2016-01-26 20:02:37.591727"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:02:51.990417"], ["updated_at", "2016-01-26 20:02:51.990417"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:02:52.015732"], ["updated_at", "2016-01-26 20:02:52.015732"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:02:52.021056"], ["updated_at", "2016-01-26 20:02:52.021056"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:02:52.022827"], ["updated_at", "2016-01-26 20:02:52.022827"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:02:52.024963"], ["updated_at", "2016-01-26 20:02:52.024963"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-26 20:02:52.026235"], ["updated_at", "2016-01-26 20:02:52.026235"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:02:52.033222"], ["updated_at", "2016-01-26 20:02:52.033222"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:02:52.034997"], ["updated_at", "2016-01-26 20:02:52.034997"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 20:02:52.038253"], ["updated_at", "2016-01-26 20:02:52.038253"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 20:02:52.040381"], ["updated_at", "2016-01-26 20:02:52.040381"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (1.9ms) CREATE TABLE "portfolio_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) select sqlite_version(*)  (1.0ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_email" ON "portfolio_admin_users" ("email")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'  (0.6ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_reset_password_token" ON "portfolio_admin_users" ("reset_password_token")  (0.6ms) CREATE TABLE "portfolio_site_item_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE TABLE "portfolio_site_item_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_item_id" integer, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.6ms) CREATE INDEX "index_portfolio_site_item_images_on_site_item_id" ON "portfolio_site_item_images" ("site_item_id")  (0.6ms) CREATE TABLE "portfolio_site_item_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.7ms) CREATE TABLE "portfolio_site_item_tags_items" ("site_item_id" integer, "site_item_tag_id" integer)  (0.7ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_id" ON "portfolio_site_item_tags_items" ("site_item_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'  (0.6ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_tag_id" ON "portfolio_site_item_tags_items" ("site_item_tag_id")  (0.7ms) CREATE TABLE "portfolio_site_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer NOT NULL, "title" varchar, "body" text, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "site_item_category_id" integer, "featured" boolean DEFAULT 'f', "public" boolean DEFAULT 'f', "type" varchar)  (0.6ms) CREATE INDEX "index_portfolio_site_items_on_site_id" ON "portfolio_site_items" ("site_id")  (0.6ms) CREATE TABLE "portfolio_site_menu_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "name" varchar, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE INDEX "index_portfolio_site_menu_links_on_site_id" ON "portfolio_site_menu_links" ("site_id")  (0.6ms) CREATE TABLE "portfolio_site_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "social_link_id" integer, "user_name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE INDEX "index_portfolio_site_social_links_on_site_id" ON "portfolio_site_social_links" ("site_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'  (0.7ms) CREATE INDEX "index_portfolio_site_social_links_on_social_link_id" ON "portfolio_site_social_links" ("social_link_id")  (0.7ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE INDEX "index_portfolio_sites_on_key" ON "portfolio_sites" ("key")  (0.7ms) CREATE TABLE "portfolio_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "url_pattern" varchar, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20160126162607') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePortfolioTables (20150714235507)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_portfolio_sites_on_key" ON "portfolio_sites" ("key")  (0.1ms) CREATE TABLE "portfolio_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "url_pattern" varchar, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "portfolio_site_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "social_link_id" integer, "user_name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_site_id" ON "portfolio_site_social_links" ("site_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_social_link_id" ON "portfolio_site_social_links" ("social_link_id")  (0.2ms) CREATE TABLE "portfolio_site_menu_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "name" varchar, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_menu_links_on_site_id" ON "portfolio_site_menu_links" ("site_id")  (0.1ms) CREATE TABLE "portfolio_site_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer NOT NULL, "title" varchar, "body" text, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_items_on_site_id" ON "portfolio_site_items" ("site_id")  (0.1ms) CREATE TABLE "portfolio_site_item_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_item_id" integer, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_item_images_on_site_item_id" ON "portfolio_site_item_images" ("site_item_id") Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-52250-1y0y4co.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-52250-1o3tjc1.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-52250-1o3tjc1.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-52250-1o3tjc1.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/3ee7299da3219259772211f37ae9e05020160126-52250-e6bcx5' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-52250-1o3tjc1.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-52250-1o3tjc1.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-52250-1o3tjc1.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/3ee7299da3219259772211f37ae9e05020160126-52250-5ounfx' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160126-52250-11obaqo.png' SQL (0.2ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Github"], ["url_pattern", "http://github.com/[user_name]"], ["image_file_name", "github.png"], ["image_content_type", "image/png"], ["image_file_size", 1609], ["image_updated_at", "2016-01-26 21:18:03.167852"], ["created_at", "2016-01-26 21:18:03.275322"], ["updated_at", "2016-01-26 21:18:03.275322"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-52250-103innq.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-52250-p4n8f2.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-52250-p4n8f2.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-52250-p4n8f2.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/ce12ff1bce27ca152fc2b3c65e2539b520160126-52250-78ks67' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-52250-p4n8f2.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-52250-p4n8f2.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-52250-p4n8f2.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/ce12ff1bce27ca152fc2b3c65e2539b520160126-52250-96909e' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160126-52250-1hlo8t4.png' SQL (0.1ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Twitter"], ["url_pattern", "http://twitter.com/[user_name]"], ["image_file_name", "twitter.png"], ["image_content_type", "image/png"], ["image_file_size", 1085], ["image_updated_at", "2016-01-26 21:18:03.286063"], ["created_at", "2016-01-26 21:18:03.402864"], ["updated_at", "2016-01-26 21:18:03.402864"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-52250-1rpz5u8.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-52250-3uir7j.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-52250-3uir7j.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-52250-3uir7j.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/7285c7a96cfef9023c76c4b8f25db39320160126-52250-1orutvl' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-52250-3uir7j.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-52250-3uir7j.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-52250-3uir7j.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/7285c7a96cfef9023c76c4b8f25db39320160126-52250-1udwhvx' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160126-52250-xyni0d.png' SQL (0.1ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Linkedin"], ["url_pattern", "http://www.linkedin.com/in/[user_name]"], ["image_file_name", "linkedin.png"], ["image_content_type", "image/png"], ["image_file_size", 959], ["image_updated_at", "2016-01-26 21:18:03.411884"], ["created_at", "2016-01-26 21:18:03.526202"], ["updated_at", "2016-01-26 21:18:03.526202"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150714235507"]]  (0.7ms) commit transaction Migrating to DeviseCreatePortfolioAdminUsers (20150916001106)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "portfolio_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_email" ON "portfolio_admin_users" ("email")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'   (0.1ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_reset_password_token" ON "portfolio_admin_users" ("reset_password_token") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150916001106"]]  (0.8ms) commit transaction Migrating to CreatePortfolioAdminSiteItemCategories (20151124202355)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_site_item_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124202355"]]  (0.5ms) commit transaction Migrating to AddSiteItemCategoryIdToSiteItem (20151124210602)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "site_item_category_id" integer SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124210602"]]  (0.5ms) commit transaction Migrating to AddFeaturedToSiteItem (20151125132700)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "featured" boolean DEFAULT 'f' SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125132700"]]  (0.6ms) commit transaction Migrating to CreatePortfolioSiteItemTags (20151125141154)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_site_item_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125141154"]]  (0.5ms) commit transaction Migrating to CreatePortfolioSiteItemTagsItems (20151125151535)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_site_item_tags_items" ("site_item_id" integer, "site_item_tag_id" integer)  (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_id" ON "portfolio_site_item_tags_items" ("site_item_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'  (1.8ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_tag_id" ON "portfolio_site_item_tags_items" ("site_item_tag_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125151535"]]  (0.7ms) commit transaction Migrating to AddPublicToPortfolioSiteItem (20151203105347)  (0.1ms) begin transaction  (0.9ms) ALTER TABLE "portfolio_site_items" ADD "public" boolean DEFAULT 'f' SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151203105347"]]  (0.6ms) commit transaction Migrating to AddTypeToSiteItem (20160126162607)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "type" varchar SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160126162607"]]  (2.4ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_sites_on_key' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_sites_on_key' AND type='index' ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:18:06.019879"], ["updated_at", "2016-01-26 21:18:06.019879"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:18:06.039241"], ["updated_at", "2016-01-26 21:18:06.039241"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:18:06.043940"], ["updated_at", "2016-01-26 21:18:06.043940"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:18:06.045680"], ["updated_at", "2016-01-26 21:18:06.045680"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:18:06.048452"], ["updated_at", "2016-01-26 21:18:06.048452"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-26 21:18:06.050081"], ["updated_at", "2016-01-26 21:18:06.050081"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:18:06.057427"], ["updated_at", "2016-01-26 21:18:06.057427"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:18:06.059691"], ["updated_at", "2016-01-26 21:18:06.059691"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:18:06.063193"], ["updated_at", "2016-01-26 21:18:06.063193"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:18:06.065026"], ["updated_at", "2016-01-26 21:18:06.065026"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:20:37.053620"], ["updated_at", "2016-01-26 21:20:37.053620"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:20:37.070116"], ["updated_at", "2016-01-26 21:20:37.070116"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:20:37.075081"], ["updated_at", "2016-01-26 21:20:37.075081"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:20:37.076791"], ["updated_at", "2016-01-26 21:20:37.076791"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:20:37.078885"], ["updated_at", "2016-01-26 21:20:37.078885"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-26 21:20:37.080148"], ["updated_at", "2016-01-26 21:20:37.080148"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:20:37.086693"], ["updated_at", "2016-01-26 21:20:37.086693"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:20:37.088443"], ["updated_at", "2016-01-26 21:20:37.088443"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:20:37.091633"], ["updated_at", "2016-01-26 21:20:37.091633"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:20:37.093346"], ["updated_at", "2016-01-26 21:20:37.093346"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:20:37.096949"], ["updated_at", "2016-01-26 21:20:37.096949"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:20:37.098772"], ["updated_at", "2016-01-26 21:20:37.098772"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:21:07.050341"], ["updated_at", "2016-01-26 21:21:07.050341"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:21:07.067362"], ["updated_at", "2016-01-26 21:21:07.067362"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:21:07.072574"], ["updated_at", "2016-01-26 21:21:07.072574"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:21:07.074412"], ["updated_at", "2016-01-26 21:21:07.074412"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:21:07.076615"], ["updated_at", "2016-01-26 21:21:07.076615"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-26 21:21:07.077865"], ["updated_at", "2016-01-26 21:21:07.077865"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:21:07.085054"], ["updated_at", "2016-01-26 21:21:07.085054"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:21:07.087490"], ["updated_at", "2016-01-26 21:21:07.087490"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:21:07.091314"], ["updated_at", "2016-01-26 21:21:07.091314"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:21:07.093127"], ["updated_at", "2016-01-26 21:21:07.093127"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-26 21:21:07.096438"], ["updated_at", "2016-01-26 21:21:07.096438"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-26 21:21:07.098524"], ["updated_at", "2016-01-26 21:21:07.098524"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.9ms) CREATE TABLE "portfolio_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) select sqlite_version(*)  (0.6ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_email" ON "portfolio_admin_users" ("email")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'  (0.6ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_reset_password_token" ON "portfolio_admin_users" ("reset_password_token")  (0.9ms) CREATE TABLE "portfolio_site_item_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.7ms) CREATE TABLE "portfolio_site_item_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_item_id" integer, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.6ms) CREATE INDEX "index_portfolio_site_item_images_on_site_item_id" ON "portfolio_site_item_images" ("site_item_id")  (0.6ms) CREATE TABLE "portfolio_site_item_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.6ms) CREATE TABLE "portfolio_site_item_tags_items" ("site_item_id" integer, "site_item_tag_id" integer)  (0.6ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_id" ON "portfolio_site_item_tags_items" ("site_item_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'  (0.6ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_tag_id" ON "portfolio_site_item_tags_items" ("site_item_tag_id")  (0.6ms) CREATE TABLE "portfolio_site_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer NOT NULL, "title" varchar, "body" text, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "site_item_category_id" integer, "featured" boolean DEFAULT 'f', "public" boolean DEFAULT 'f', "type" varchar)  (0.5ms) CREATE INDEX "index_portfolio_site_items_on_site_id" ON "portfolio_site_items" ("site_id")  (0.5ms) CREATE TABLE "portfolio_site_menu_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "name" varchar, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.5ms) CREATE INDEX "index_portfolio_site_menu_links_on_site_id" ON "portfolio_site_menu_links" ("site_id")  (0.6ms) CREATE TABLE "portfolio_site_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "social_link_id" integer, "user_name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.5ms) CREATE INDEX "index_portfolio_site_social_links_on_site_id" ON "portfolio_site_social_links" ("site_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'  (0.6ms) CREATE INDEX "index_portfolio_site_social_links_on_social_link_id" ON "portfolio_site_social_links" ("social_link_id")  (0.6ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) CREATE INDEX "index_portfolio_sites_on_key" ON "portfolio_sites" ("key")  (0.8ms) CREATE TABLE "portfolio_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "url_pattern" varchar, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160126162607') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePortfolioTables (20150714235507)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQLite3::SQLException: table "portfolio_sites" already exists: CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) rollback transaction  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePortfolioTables (20150714235507)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_portfolio_sites_on_key" ON "portfolio_sites" ("key")  (0.1ms) CREATE TABLE "portfolio_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "url_pattern" varchar, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "portfolio_site_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "social_link_id" integer, "user_name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_site_id" ON "portfolio_site_social_links" ("site_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_social_link_id" ON "portfolio_site_social_links" ("social_link_id")  (0.1ms) CREATE TABLE "portfolio_site_menu_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "name" varchar, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_menu_links_on_site_id" ON "portfolio_site_menu_links" ("site_id")  (0.1ms) CREATE TABLE "portfolio_site_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer NOT NULL, "title" varchar, "body" text, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_items_on_site_id" ON "portfolio_site_items" ("site_id")  (0.1ms) CREATE TABLE "portfolio_site_item_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_item_id" integer, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_item_images_on_site_item_id" ON "portfolio_site_item_images" ("site_item_id") Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53926-1ojk1sj.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53926-obxbq6.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53926-obxbq6.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53926-obxbq6.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/a5e33c3aac9b4402f6bf744272b5186620160127-53926-kic51y' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53926-obxbq6.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53926-obxbq6.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53926-obxbq6.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/a5e33c3aac9b4402f6bf744272b5186620160127-53926-12mr027' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53926-1bf9qia.png' SQL (0.2ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Github"], ["url_pattern", "http://github.com/[user_name]"], ["image_file_name", "github.png"], ["image_content_type", "image/png"], ["image_file_size", 1609], ["image_updated_at", "2016-01-27 13:55:28.112071"], ["created_at", "2016-01-27 13:55:28.251342"], ["updated_at", "2016-01-27 13:55:28.251342"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53926-15brlvn.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53926-psfk41.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53926-psfk41.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53926-psfk41.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/47a93db31d83768bcd66a7ded7be14d220160127-53926-hbkkw2' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53926-psfk41.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53926-psfk41.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53926-psfk41.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/47a93db31d83768bcd66a7ded7be14d220160127-53926-1lhp28w' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53926-mlh3li.png' SQL (0.1ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Twitter"], ["url_pattern", "http://twitter.com/[user_name]"], ["image_file_name", "twitter.png"], ["image_content_type", "image/png"], ["image_file_size", 1085], ["image_updated_at", "2016-01-27 13:55:28.263184"], ["created_at", "2016-01-27 13:55:28.377459"], ["updated_at", "2016-01-27 13:55:28.377459"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53926-1k0sfpr.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53926-1uw3jf6.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53926-1uw3jf6.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53926-1uw3jf6.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/6f47055ece5f5587828e8eae51eebf8c20160127-53926-16fy3wp' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53926-1uw3jf6.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53926-1uw3jf6.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53926-1uw3jf6.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/6f47055ece5f5587828e8eae51eebf8c20160127-53926-gjuy02' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53926-wdlmzq.png' SQL (0.1ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Linkedin"], ["url_pattern", "http://www.linkedin.com/in/[user_name]"], ["image_file_name", "linkedin.png"], ["image_content_type", "image/png"], ["image_file_size", 959], ["image_updated_at", "2016-01-27 13:55:28.388609"], ["created_at", "2016-01-27 13:55:28.500245"], ["updated_at", "2016-01-27 13:55:28.500245"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150714235507"]]  (0.7ms) commit transaction Migrating to DeviseCreatePortfolioAdminUsers (20150916001106)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.6ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_email" ON "portfolio_admin_users" ("email")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'   (0.1ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_reset_password_token" ON "portfolio_admin_users" ("reset_password_token") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150916001106"]]  (0.8ms) commit transaction Migrating to CreatePortfolioAdminSiteItemCategories (20151124202355)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "portfolio_site_item_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124202355"]]  (0.5ms) commit transaction Migrating to AddSiteItemCategoryIdToSiteItem (20151124210602)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "site_item_category_id" integer SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124210602"]]  (0.6ms) commit transaction Migrating to AddFeaturedToSiteItem (20151125132700)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "featured" boolean DEFAULT 'f' SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125132700"]]  (0.9ms) commit transaction Migrating to CreatePortfolioSiteItemTags (20151125141154)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_site_item_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125141154"]]  (0.5ms) commit transaction Migrating to CreatePortfolioSiteItemTagsItems (20151125151535)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "portfolio_site_item_tags_items" ("site_item_id" integer, "site_item_tag_id" integer)  (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_id" ON "portfolio_site_item_tags_items" ("site_item_id")  (0.0ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'  (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_tag_id" ON "portfolio_site_item_tags_items" ("site_item_tag_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125151535"]]  (0.6ms) commit transaction Migrating to AddPublicToPortfolioSiteItem (20151203105347)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "public" boolean DEFAULT 'f' SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151203105347"]]  (0.5ms) commit transaction Migrating to AddTypeToSiteItem (20160126162607)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "type" varchar SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160126162607"]]  (0.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_sites_on_key' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_sites_on_key' AND type='index' ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:55:31.168845"], ["updated_at", "2016-01-27 13:55:31.168845"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:55:31.186790"], ["updated_at", "2016-01-27 13:55:31.186790"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:55:31.191747"], ["updated_at", "2016-01-27 13:55:31.191747"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:55:31.193746"], ["updated_at", "2016-01-27 13:55:31.193746"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:55:31.196391"], ["updated_at", "2016-01-27 13:55:31.196391"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 13:55:31.197692"], ["updated_at", "2016-01-27 13:55:31.197692"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:55:31.204854"], ["updated_at", "2016-01-27 13:55:31.204854"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:55:31.207125"], ["updated_at", "2016-01-27 13:55:31.207125"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:55:31.210994"], ["updated_at", "2016-01-27 13:55:31.210994"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:55:31.213317"], ["updated_at", "2016-01-27 13:55:31.213317"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:55:31.217101"], ["updated_at", "2016-01-27 13:55:31.217101"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:55:31.218895"], ["updated_at", "2016-01-27 13:55:31.218895"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:55:31.248951"], ["updated_at", "2016-01-27 13:55:31.248951"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Wooden Plate"], ["site_id", 1], ["created_at", "2016-01-27 13:55:31.256591"], ["updated_at", "2016-01-27 13:55:31.256591"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Wooden Plate"], ["site_id", 1], ["created_at", "2016-01-27 13:55:31.258722"], ["updated_at", "2016-01-27 13:55:31.258722"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Wooden Plate"], ["site_id", 1], ["created_at", "2016-01-27 13:55:31.260177"], ["updated_at", "2016-01-27 13:55:31.260177"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePortfolioTables (20150714235507)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_sites" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "person_name" varchar NOT NULL, "job_title" varchar NOT NULL, "greetings" varchar, "summary" text, "email" varchar, "default" boolean DEFAULT 'f', "avatar_file_name" varchar, "avatar_content_type" varchar, "avatar_file_size" integer, "avatar_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_portfolio_sites_on_key" ON "portfolio_sites" ("key")  (0.1ms) CREATE TABLE "portfolio_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "url_pattern" varchar, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "portfolio_site_social_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "social_link_id" integer, "user_name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_site_id" ON "portfolio_site_social_links" ("site_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'   (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_social_link_id" ON "portfolio_site_social_links" ("social_link_id")  (0.1ms) CREATE TABLE "portfolio_site_menu_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer, "name" varchar, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_menu_links_on_site_id" ON "portfolio_site_menu_links" ("site_id")  (0.1ms) CREATE TABLE "portfolio_site_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_id" integer NOT NULL, "title" varchar, "body" text, "url" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_items_on_site_id" ON "portfolio_site_items" ("site_id")  (0.1ms) CREATE TABLE "portfolio_site_item_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "site_item_id" integer, "image_file_name" varchar, "image_content_type" varchar, "image_file_size" integer, "image_updated_at" datetime, "default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_portfolio_site_item_images_on_site_item_id" ON "portfolio_site_item_images" ("site_item_id") Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53973-sys7sr.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53973-ty5gb.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53973-ty5gb.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53973-ty5gb.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/1e06fe33883a552f4296c2d7f783851a20160127-53973-92kuuo' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53973-ty5gb.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53973-ty5gb.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53973-ty5gb.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/1e06fe33883a552f4296c2d7f783851a20160127-53973-1n0pgnm' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160127-53973-128zar6.png' SQL (0.2ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Github"], ["url_pattern", "http://github.com/[user_name]"], ["image_file_name", "github.png"], ["image_content_type", "image/png"], ["image_file_size", 1609], ["image_updated_at", "2016-01-27 13:57:17.690328"], ["created_at", "2016-01-27 13:57:17.801170"], ["updated_at", "2016-01-27 13:57:17.801170"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53973-sslec5.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53973-g09d81.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53973-g09d81.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53973-g09d81.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/fdd0edada10e47be9e082149e503a04c20160127-53973-yeg8ei' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53973-g09d81.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53973-g09d81.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53973-g09d81.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/fdd0edada10e47be9e082149e503a04c20160127-53973-c5znv2' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160127-53973-h0zolq.png' SQL (0.1ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Twitter"], ["url_pattern", "http://twitter.com/[user_name]"], ["image_file_name", "twitter.png"], ["image_content_type", "image/png"], ["image_file_size", 1085], ["image_updated_at", "2016-01-27 13:57:17.819235"], ["created_at", "2016-01-27 13:57:17.935452"], ["updated_at", "2016-01-27 13:57:17.935452"]] Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53973-7w2nr.png' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53973-1w35cc4.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53973-1w35cc4.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53973-1w35cc4.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/08c3097e11d07bc54acfec9bc04a340c20160127-53973-42z63f' Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53973-1w35cc4.png[0]' 2>/dev/null Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53973-1w35cc4.png[0]' Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53973-1w35cc4.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/08c3097e11d07bc54acfec9bc04a340c20160127-53973-we69bi' Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160127-53973-70tz0l.png' SQL (0.2ms) INSERT INTO "portfolio_social_links" ("name", "url_pattern", "image_file_name", "image_content_type", "image_file_size", "image_updated_at", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Linkedin"], ["url_pattern", "http://www.linkedin.com/in/[user_name]"], ["image_file_name", "linkedin.png"], ["image_content_type", "image/png"], ["image_file_size", 959], ["image_updated_at", "2016-01-27 13:57:17.948597"], ["created_at", "2016-01-27 13:57:18.061666"], ["updated_at", "2016-01-27 13:57:18.061666"]] SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150714235507"]]  (0.7ms) commit transaction Migrating to DeviseCreatePortfolioAdminUsers (20150916001106)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "portfolio_admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.5ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_email" ON "portfolio_admin_users" ("email")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'   (0.2ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_reset_password_token" ON "portfolio_admin_users" ("reset_password_token") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150916001106"]]  (0.7ms) commit transaction Migrating to CreatePortfolioAdminSiteItemCategories (20151124202355)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "portfolio_site_item_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124202355"]]  (0.5ms) commit transaction Migrating to AddSiteItemCategoryIdToSiteItem (20151124210602)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "site_item_category_id" integer SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124210602"]]  (0.5ms) commit transaction Migrating to AddFeaturedToSiteItem (20151125132700)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "featured" boolean DEFAULT 'f' SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125132700"]]  (0.6ms) commit transaction Migrating to CreatePortfolioSiteItemTags (20151125141154)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "portfolio_site_item_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125141154"]]  (0.5ms) commit transaction Migrating to CreatePortfolioSiteItemTagsItems (20151125151535)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "portfolio_site_item_tags_items" ("site_item_id" integer, "site_item_tag_id" integer)  (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_id" ON "portfolio_site_item_tags_items" ("site_item_id")  (0.0ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'  (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_tag_id" ON "portfolio_site_item_tags_items" ("site_item_tag_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125151535"]]  (0.5ms) commit transaction Migrating to AddPublicToPortfolioSiteItem (20151203105347)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "public" boolean DEFAULT 'f' SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151203105347"]]  (0.5ms) commit transaction Migrating to AddTypeToSiteItem (20160126162607)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "type" varchar SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160126162607"]]  (0.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_admin_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_admin_users_on_email' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_items_on_site_id' AND type='index'  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_portfolio_sites_on_key' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_portfolio_sites_on_key' AND type='index' ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:20.722280"], ["updated_at", "2016-01-27 13:57:20.722280"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:57:20.738786"], ["updated_at", "2016-01-27 13:57:20.738786"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:20.744488"], ["updated_at", "2016-01-27 13:57:20.744488"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:57:20.746223"], ["updated_at", "2016-01-27 13:57:20.746223"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:20.748561"], ["updated_at", "2016-01-27 13:57:20.748561"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 13:57:20.750054"], ["updated_at", "2016-01-27 13:57:20.750054"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:20.755888"], ["updated_at", "2016-01-27 13:57:20.755888"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:57:20.757625"], ["updated_at", "2016-01-27 13:57:20.757625"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:20.762037"], ["updated_at", "2016-01-27 13:57:20.762037"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:57:20.764349"], ["updated_at", "2016-01-27 13:57:20.764349"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:20.767894"], ["updated_at", "2016-01-27 13:57:20.767894"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:57:20.770058"], ["updated_at", "2016-01-27 13:57:20.770058"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:20.777524"], ["updated_at", "2016-01-27 13:57:20.777524"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Aluminum Table"], ["site_id", 1], ["created_at", "2016-01-27 13:57:20.784315"], ["updated_at", "2016-01-27 13:57:20.784315"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Aluminum Table"], ["site_id", 1], ["created_at", "2016-01-27 13:57:20.786163"], ["updated_at", "2016-01-27 13:57:20.786163"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Aluminum Table"], ["site_id", 1], ["created_at", "2016-01-27 13:57:20.787514"], ["updated_at", "2016-01-27 13:57:20.787514"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:26.675059"], ["updated_at", "2016-01-27 13:57:26.675059"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:57:26.690382"], ["updated_at", "2016-01-27 13:57:26.690382"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:26.695545"], ["updated_at", "2016-01-27 13:57:26.695545"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:57:26.697320"], ["updated_at", "2016-01-27 13:57:26.697320"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:26.699609"], ["updated_at", "2016-01-27 13:57:26.699609"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 13:57:26.700908"], ["updated_at", "2016-01-27 13:57:26.700908"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:26.707044"], ["updated_at", "2016-01-27 13:57:26.707044"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:57:26.708752"], ["updated_at", "2016-01-27 13:57:26.708752"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:26.711695"], ["updated_at", "2016-01-27 13:57:26.711695"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:57:26.713384"], ["updated_at", "2016-01-27 13:57:26.713384"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:26.717421"], ["updated_at", "2016-01-27 13:57:26.717421"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 13:57:26.719231"], ["updated_at", "2016-01-27 13:57:26.719231"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 13:57:26.725961"], ["updated_at", "2016-01-27 13:57:26.725961"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Marble Bag"], ["site_id", 1], ["created_at", "2016-01-27 13:57:26.734358"], ["updated_at", "2016-01-27 13:57:26.734358"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Marble Bag"], ["site_id", 1], ["created_at", "2016-01-27 13:57:26.736325"], ["updated_at", "2016-01-27 13:57:26.736325"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Marble Bag"], ["site_id", 1], ["created_at", "2016-01-27 13:57:26.737717"], ["updated_at", "2016-01-27 13:57:26.737717"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:02:08.872050"], ["updated_at", "2016-01-27 14:02:08.872050"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Granite Shirt"], ["site_id", 1], ["created_at", "2016-01-27 14:02:08.887782"], ["updated_at", "2016-01-27 14:02:08.887782"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Granite Shirt"], ["site_id", 1], ["created_at", "2016-01-27 14:02:08.889748"], ["updated_at", "2016-01-27 14:02:08.889748"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Granite Shirt"], ["site_id", 1], ["created_at", "2016-01-27 14:02:08.891056"], ["updated_at", "2016-01-27 14:02:08.891056"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (31.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (48.7ms)  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:07:42.053218"], ["updated_at", "2016-01-27 14:07:42.053218"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Leather Knife"], ["site_id", 1], ["created_at", "2016-01-27 14:07:42.073039"], ["updated_at", "2016-01-27 14:07:42.073039"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Leather Knife"], ["site_id", 1], ["created_at", "2016-01-27 14:07:42.075397"], ["updated_at", "2016-01-27 14:07:42.075397"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Leather Knife"], ["site_id", 1], ["created_at", "2016-01-27 14:07:42.076901"], ["updated_at", "2016-01-27 14:07:42.076901"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (34.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (49.4ms)  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:38:44.991970"], ["updated_at", "2016-01-27 14:38:44.991970"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wool Car"], ["site_id", 1], ["created_at", "2016-01-27 14:38:45.009340"], ["updated_at", "2016-01-27 14:38:45.009340"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wool Car"], ["site_id", 1], ["created_at", "2016-01-27 14:38:45.011543"], ["updated_at", "2016-01-27 14:38:45.011543"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wool Car"], ["site_id", 1], ["created_at", "2016-01-27 14:38:45.012892"], ["updated_at", "2016-01-27 14:38:45.012892"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (29.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (44.0ms)  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:46:04.233262"], ["updated_at", "2016-01-27 14:46:04.233262"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Marble Plate"], ["site_id", 1], ["created_at", "2016-01-27 14:46:04.249263"], ["updated_at", "2016-01-27 14:46:04.249263"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Marble Plate"], ["site_id", 1], ["created_at", "2016-01-27 14:46:04.251396"], ["updated_at", "2016-01-27 14:46:04.251396"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Marble Plate"], ["site_id", 1], ["created_at", "2016-01-27 14:46:04.252808"], ["updated_at", "2016-01-27 14:46:04.252808"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (28.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (42.3ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:47:05.381763"], ["updated_at", "2016-01-27 14:47:05.381763"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Cotton Car"], ["site_id", 1], ["created_at", "2016-01-27 14:47:05.397206"], ["updated_at", "2016-01-27 14:47:05.397206"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Cotton Car"], ["site_id", 1], ["created_at", "2016-01-27 14:47:05.399725"], ["updated_at", "2016-01-27 14:47:05.399725"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Cotton Car"], ["site_id", 1], ["created_at", "2016-01-27 14:47:05.401079"], ["updated_at", "2016-01-27 14:47:05.401079"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (30.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (43.8ms)  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:47:28.839994"], ["updated_at", "2016-01-27 14:47:28.839994"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wool Table"], ["site_id", 1], ["created_at", "2016-01-27 14:47:28.859649"], ["updated_at", "2016-01-27 14:47:28.859649"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wool Table"], ["site_id", 1], ["created_at", "2016-01-27 14:47:28.862750"], ["updated_at", "2016-01-27 14:47:28.862750"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wool Table"], ["site_id", 1], ["created_at", "2016-01-27 14:47:28.864935"], ["updated_at", "2016-01-27 14:47:28.864935"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (13.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (27.7ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:50:22.135553"], ["updated_at", "2016-01-27 14:50:22.135553"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Lamp"], ["site_id", 1], ["created_at", "2016-01-27 14:50:22.152993"], ["updated_at", "2016-01-27 14:50:22.152993"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Lamp"], ["site_id", 1], ["created_at", "2016-01-27 14:50:22.155083"], ["updated_at", "2016-01-27 14:50:22.155083"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Lamp"], ["site_id", 1], ["created_at", "2016-01-27 14:50:22.157608"], ["updated_at", "2016-01-27 14:50:22.157608"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:51:56.119128"], ["updated_at", "2016-01-27 14:51:56.119128"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Silk Bottle"], ["site_id", 1], ["created_at", "2016-01-27 14:51:56.136291"], ["updated_at", "2016-01-27 14:51:56.136291"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Silk Bottle"], ["site_id", 1], ["created_at", "2016-01-27 14:51:56.138444"], ["updated_at", "2016-01-27 14:51:56.138444"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Silk Bottle"], ["site_id", 1], ["created_at", "2016-01-27 14:51:56.139887"], ["updated_at", "2016-01-27 14:51:56.139887"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (11.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (25.8ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (83.7ms)  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:54:40.220557"], ["updated_at", "2016-01-27 14:54:40.220557"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Marble Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:54:40.236279"], ["updated_at", "2016-01-27 14:54:40.236279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Marble Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:54:40.238398"], ["updated_at", "2016-01-27 14:54:40.238398"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Marble Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:54:40.239877"], ["updated_at", "2016-01-27 14:54:40.239877"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.5ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (38.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (114.1ms)  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:55:22.167339"], ["updated_at", "2016-01-27 14:55:22.167339"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Aluminum Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:55:22.183301"], ["updated_at", "2016-01-27 14:55:22.183301"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Aluminum Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:55:22.185723"], ["updated_at", "2016-01-27 14:55:22.185723"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Aluminum Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:55:22.187217"], ["updated_at", "2016-01-27 14:55:22.187217"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (20.9ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (37.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (109.5ms)  (1.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:55:45.122798"], ["updated_at", "2016-01-27 14:55:45.122798"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Linen Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:55:45.138627"], ["updated_at", "2016-01-27 14:55:45.138627"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Linen Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:55:45.140677"], ["updated_at", "2016-01-27 14:55:45.140677"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Linen Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:55:45.142304"], ["updated_at", "2016-01-27 14:55:45.142304"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (10.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (24.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (16.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (99.5ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 14:57:00.592721"], ["updated_at", "2016-01-27 14:57:00.592721"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Concrete Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:57:00.609084"], ["updated_at", "2016-01-27 14:57:00.609084"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Concrete Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:57:00.611184"], ["updated_at", "2016-01-27 14:57:00.611184"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Concrete Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 14:57:00.612641"], ["updated_at", "2016-01-27 14:57:00.612641"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.1ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (13.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (85.0ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:00:52.818296"], ["updated_at", "2016-01-27 15:00:52.818296"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Concrete Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:00:52.836710"], ["updated_at", "2016-01-27 15:00:52.836710"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Concrete Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:00:52.839348"], ["updated_at", "2016-01-27 15:00:52.839348"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Concrete Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:00:52.841530"], ["updated_at", "2016-01-27 15:00:52.841530"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (25.1ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (47.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (125.1ms)  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:01:58.657597"], ["updated_at", "2016-01-27 15:01:58.657597"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Granite Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:01:58.673330"], ["updated_at", "2016-01-27 15:01:58.673330"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Granite Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:01:58.675317"], ["updated_at", "2016-01-27 15:01:58.675317"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Granite Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:01:58.677053"], ["updated_at", "2016-01-27 15:01:58.677053"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (7.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (193.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (269.6ms)  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:02:30.175988"], ["updated_at", "2016-01-27 15:02:30.175988"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Marble Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:02:30.192031"], ["updated_at", "2016-01-27 15:02:30.192031"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Marble Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:02:30.194088"], ["updated_at", "2016-01-27 15:02:30.194088"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Marble Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:02:30.195545"], ["updated_at", "2016-01-27 15:02:30.195545"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (22.9ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (228.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (306.3ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:02:57.472156"], ["updated_at", "2016-01-27 15:02:57.472156"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Marble Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:02:57.491533"], ["updated_at", "2016-01-27 15:02:57.491533"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Marble Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:02:57.494562"], ["updated_at", "2016-01-27 15:02:57.494562"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Marble Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:02:57.496609"], ["updated_at", "2016-01-27 15:02:57.496609"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.4ms) Portfolio::SiteItemCategory Load (0.4ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (234.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (306.1ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:03:38.988852"], ["updated_at", "2016-01-27 15:03:38.988852"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Silk Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:03:39.006024"], ["updated_at", "2016-01-27 15:03:39.006024"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Silk Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:03:39.008202"], ["updated_at", "2016-01-27 15:03:39.008202"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Silk Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:03:39.009554"], ["updated_at", "2016-01-27 15:03:39.009554"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (180.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (253.1ms)  (1.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:04:41.744466"], ["updated_at", "2016-01-27 15:04:41.744466"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:04:41.763810"], ["updated_at", "2016-01-27 15:04:41.763810"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:04:41.766390"], ["updated_at", "2016-01-27 15:04:41.766390"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:04:41.767950"], ["updated_at", "2016-01-27 15:04:41.767950"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (22.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (234.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (311.2ms)  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:05:11.403377"], ["updated_at", "2016-01-27 15:05:11.403377"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:05:11.420059"], ["updated_at", "2016-01-27 15:05:11.420059"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:05:11.422271"], ["updated_at", "2016-01-27 15:05:11.422271"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:05:11.424138"], ["updated_at", "2016-01-27 15:05:11.424138"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.1ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (184.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (258.0ms)  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:05:34.006183"], ["updated_at", "2016-01-27 15:05:34.006183"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:05:34.023770"], ["updated_at", "2016-01-27 15:05:34.023770"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:05:34.025919"], ["updated_at", "2016-01-27 15:05:34.025919"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:05:34.027299"], ["updated_at", "2016-01-27 15:05:34.027299"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (22.5ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (235.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (308.2ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:05:55.789279"], ["updated_at", "2016-01-27 15:05:55.789279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Rubber Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:05:55.806836"], ["updated_at", "2016-01-27 15:05:55.806836"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Rubber Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:05:55.808991"], ["updated_at", "2016-01-27 15:05:55.808991"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Rubber Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:05:55.810841"], ["updated_at", "2016-01-27 15:05:55.810841"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (22.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (241.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (318.2ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:06:36.700157"], ["updated_at", "2016-01-27 15:06:36.700157"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:06:36.717672"], ["updated_at", "2016-01-27 15:06:36.717672"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:06:36.720691"], ["updated_at", "2016-01-27 15:06:36.720691"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:06:36.722236"], ["updated_at", "2016-01-27 15:06:36.722236"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (23.5ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (202.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (279.4ms)  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:07:25.219633"], ["updated_at", "2016-01-27 15:07:25.219633"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Plastic Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:07:25.236836"], ["updated_at", "2016-01-27 15:07:25.236836"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Plastic Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:07:25.239059"], ["updated_at", "2016-01-27 15:07:25.239059"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Plastic Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:07:25.240521"], ["updated_at", "2016-01-27 15:07:25.240521"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (20.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (199.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (276.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1]]  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:09:26.153087"], ["updated_at", "2016-01-27 15:09:26.153087"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Linen Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:09:26.170972"], ["updated_at", "2016-01-27 15:09:26.170972"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Linen Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:09:26.173207"], ["updated_at", "2016-01-27 15:09:26.173207"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Linen Pants"], ["site_id", 1], ["created_at", "2016-01-27 15:09:26.174664"], ["updated_at", "2016-01-27 15:09:26.174664"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Linen Pants"], ["site_id", 1], ["created_at", "2016-01-27 15:09:26.175946"], ["updated_at", "2016-01-27 15:09:26.175946"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (22.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (176.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (252.1ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:10:02.566400"], ["updated_at", "2016-01-27 15:10:02.566400"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:10:02.589346"], ["updated_at", "2016-01-27 15:10:02.589346"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:10:02.592389"], ["updated_at", "2016-01-27 15:10:02.592389"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Bottle"], ["site_id", 1], ["created_at", "2016-01-27 15:10:02.594087"], ["updated_at", "2016-01-27 15:10:02.594087"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Bottle"], ["site_id", 1], ["created_at", "2016-01-27 15:10:02.596407"], ["updated_at", "2016-01-27 15:10:02.596407"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (11.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (26.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (207.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (297.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:11:37.249851"], ["updated_at", "2016-01-27 15:11:37.249851"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:11:37.265859"], ["updated_at", "2016-01-27 15:11:37.265859"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:11:37.268016"], ["updated_at", "2016-01-27 15:11:37.268016"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Pants"], ["site_id", 1], ["created_at", "2016-01-27 15:11:37.269437"], ["updated_at", "2016-01-27 15:11:37.269437"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Pants"], ["site_id", 1], ["created_at", "2016-01-27 15:11:37.271058"], ["updated_at", "2016-01-27 15:11:37.271058"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (20.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (181.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (254.5ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:11:37.566423"], ["updated_at", "2016-01-27 15:11:37.566423"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:11:37.568567"], ["updated_at", "2016-01-27 15:11:37.568567"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:11:37.571405"], ["updated_at", "2016-01-27 15:11:37.571405"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Pants"], ["site_id", 1], ["created_at", "2016-01-27 15:11:37.572999"], ["updated_at", "2016-01-27 15:11:37.572999"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Pants"], ["site_id", 1], ["created_at", "2016-01-27 15:11:37.575020"], ["updated_at", "2016-01-27 15:11:37.575020"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (9.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:12:30.785618"], ["updated_at", "2016-01-27 15:12:30.785618"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Iron Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:12:30.801379"], ["updated_at", "2016-01-27 15:12:30.801379"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Iron Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:12:30.803420"], ["updated_at", "2016-01-27 15:12:30.803420"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Iron Clock"], ["site_id", 1], ["created_at", "2016-01-27 15:12:30.804834"], ["updated_at", "2016-01-27 15:12:30.804834"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Iron Clock"], ["site_id", 1], ["created_at", "2016-01-27 15:12:30.806187"], ["updated_at", "2016-01-27 15:12:30.806187"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (169.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (243.3ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:12:31.088340"], ["updated_at", "2016-01-27 15:12:31.088340"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Iron Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:12:31.090586"], ["updated_at", "2016-01-27 15:12:31.090586"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Iron Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:12:31.092419"], ["updated_at", "2016-01-27 15:12:31.092419"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Iron Clock"], ["site_id", 1], ["created_at", "2016-01-27 15:12:31.093866"], ["updated_at", "2016-01-27 15:12:31.093866"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Iron Clock"], ["site_id", 1], ["created_at", "2016-01-27 15:12:31.095359"], ["updated_at", "2016-01-27 15:12:31.095359"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (9.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:14:08.889645"], ["updated_at", "2016-01-27 15:14:08.889645"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Iron Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:14:08.908167"], ["updated_at", "2016-01-27 15:14:08.908167"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Iron Knife"], ["site_id", 1], ["created_at", "2016-01-27 15:14:08.910299"], ["updated_at", "2016-01-27 15:14:08.910299"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (24.5ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (166.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (245.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:14:09.174997"], ["updated_at", "2016-01-27 15:14:09.174997"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Iron Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:14:09.176971"], ["updated_at", "2016-01-27 15:14:09.176971"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Iron Knife"], ["site_id", 1], ["created_at", "2016-01-27 15:14:09.178687"], ["updated_at", "2016-01-27 15:14:09.178687"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (8.2ms) Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:15:48.383474"], ["updated_at", "2016-01-27 15:15:48.383474"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:15:48.399172"], ["updated_at", "2016-01-27 15:15:48.399172"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Lamp"], ["site_id", 1], ["created_at", "2016-01-27 15:15:48.401512"], ["updated_at", "2016-01-27 15:15:48.401512"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (171.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (245.4ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:15:48.689720"], ["updated_at", "2016-01-27 15:15:48.689720"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:15:48.691985"], ["updated_at", "2016-01-27 15:15:48.691985"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Lamp"], ["site_id", 1], ["created_at", "2016-01-27 15:15:48.694016"], ["updated_at", "2016-01-27 15:15:48.694016"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (9.9ms) Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:15:56.413393"], ["updated_at", "2016-01-27 15:15:56.413393"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:15:56.430439"], ["updated_at", "2016-01-27 15:15:56.430439"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Gloves"], ["site_id", 1], ["created_at", "2016-01-27 15:15:56.433036"], ["updated_at", "2016-01-27 15:15:56.433036"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.9ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (175.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (253.0ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:15:56.704487"], ["updated_at", "2016-01-27 15:15:56.704487"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:15:56.728026"], ["updated_at", "2016-01-27 15:15:56.728026"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Gloves"], ["site_id", 1], ["created_at", "2016-01-27 15:15:56.730388"], ["updated_at", "2016-01-27 15:15:56.730388"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (7.1ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:16:05.455843"], ["updated_at", "2016-01-27 15:16:05.455843"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:16:05.472450"], ["updated_at", "2016-01-27 15:16:05.472450"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Table"], ["site_id", 1], ["created_at", "2016-01-27 15:16:05.474659"], ["updated_at", "2016-01-27 15:16:05.474659"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (10.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (24.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (176.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (254.0ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:16:05.770452"], ["updated_at", "2016-01-27 15:16:05.770452"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:16:05.772447"], ["updated_at", "2016-01-27 15:16:05.772447"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Table"], ["site_id", 1], ["created_at", "2016-01-27 15:16:05.774373"], ["updated_at", "2016-01-27 15:16:05.774373"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (8.8ms) Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:16:30.520371"], ["updated_at", "2016-01-27 15:16:30.520371"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Steel Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:16:30.536480"], ["updated_at", "2016-01-27 15:16:30.536480"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wool Plate"], ["site_id", 1], ["created_at", "2016-01-27 15:16:30.538717"], ["updated_at", "2016-01-27 15:16:30.538717"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (190.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (264.4ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:16:30.822934"], ["updated_at", "2016-01-27 15:16:30.822934"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Copper Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:16:30.825211"], ["updated_at", "2016-01-27 15:16:30.825211"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Marble Knife"], ["site_id", 1], ["created_at", "2016-01-27 15:16:30.827429"], ["updated_at", "2016-01-27 15:16:30.827429"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (9.6ms) Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:16:44.339304"], ["updated_at", "2016-01-27 15:16:44.339304"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Linen Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:16:44.355825"], ["updated_at", "2016-01-27 15:16:44.355825"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Wool Wallet"], ["site_id", 1], ["created_at", "2016-01-27 15:16:44.357974"], ["updated_at", "2016-01-27 15:16:44.357974"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (20.8ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (189.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (264.6ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:16:44.643295"], ["updated_at", "2016-01-27 15:16:44.643295"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Marble Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:16:44.645716"], ["updated_at", "2016-01-27 15:16:44.645716"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Bronze Bottle"], ["site_id", 1], ["created_at", "2016-01-27 15:16:44.647735"], ["updated_at", "2016-01-27 15:16:44.647735"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (7.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (0.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:18:06.709881"], ["updated_at", "2016-01-27 15:18:06.709881"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Rubber Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:18:06.727754"], ["updated_at", "2016-01-27 15:18:06.727754"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Silk Shirt"], ["site_id", 1], ["created_at", "2016-01-27 15:18:06.730099"], ["updated_at", "2016-01-27 15:18:06.730099"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.0ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (192.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (263.3ms)  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:18:07.011834"], ["updated_at", "2016-01-27 15:18:07.011834"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Linen Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:18:07.014806"], ["updated_at", "2016-01-27 15:18:07.014806"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Silk Chair"], ["site_id", 1], ["created_at", "2016-01-27 15:18:07.017109"], ["updated_at", "2016-01-27 15:18:07.017109"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (6.9ms)  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:18:49.296149"], ["updated_at", "2016-01-27 15:18:49.296149"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Marble Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:18:49.313000"], ["updated_at", "2016-01-27 15:18:49.313000"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Steel Table"], ["site_id", 1], ["created_at", "2016-01-27 15:18:49.315161"], ["updated_at", "2016-01-27 15:18:49.315161"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (10.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (24.2ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (186.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (262.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:18:49.598379"], ["updated_at", "2016-01-27 15:18:49.598379"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Concrete Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:18:49.600628"], ["updated_at", "2016-01-27 15:18:49.600628"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Wool Gloves"], ["site_id", 1], ["created_at", "2016-01-27 15:18:49.603251"], ["updated_at", "2016-01-27 15:18:49.603251"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (6.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:25:12.713384"], ["updated_at", "2016-01-27 15:25:12.713384"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Wooden Hat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:25:12.729625"], ["updated_at", "2016-01-27 15:25:12.729625"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Marble Hat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:25:12.731853"], ["updated_at", "2016-01-27 15:25:12.731853"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Aluminum Bench"], ["site_id", 1], ["created_at", "2016-01-27 15:25:12.733354"], ["updated_at", "2016-01-27 15:25:12.733354"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Linen Clock"], ["site_id", 1], ["created_at", "2016-01-27 15:25:12.734706"], ["updated_at", "2016-01-27 15:25:12.734706"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (23.0ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (192.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (268.0ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:25:13.022502"], ["updated_at", "2016-01-27 15:25:13.022502"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Linen Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:25:13.024553"], ["updated_at", "2016-01-27 15:25:13.024553"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Concrete Wallet"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:25:13.026495"], ["updated_at", "2016-01-27 15:25:13.026495"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Marble Gloves"], ["site_id", 1], ["created_at", "2016-01-27 15:25:13.028085"], ["updated_at", "2016-01-27 15:25:13.028085"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Car"], ["site_id", 1], ["created_at", "2016-01-27 15:25:13.029847"], ["updated_at", "2016-01-27 15:25:13.029847"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (9.5ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:25:13.045215"], ["updated_at", "2016-01-27 15:25:13.045215"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:25:13.051372"], ["updated_at", "2016-01-27 15:25:13.051372"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:26:00.228293"], ["updated_at", "2016-01-27 15:26:00.228293"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Concrete Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:26:00.244682"], ["updated_at", "2016-01-27 15:26:00.244682"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Leather Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:26:00.246835"], ["updated_at", "2016-01-27 15:26:00.246835"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wooden Lamp"], ["site_id", 1], ["created_at", "2016-01-27 15:26:00.248317"], ["updated_at", "2016-01-27 15:26:00.248317"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Plastic Knife"], ["site_id", 1], ["created_at", "2016-01-27 15:26:00.249910"], ["updated_at", "2016-01-27 15:26:00.249910"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (21.5ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (185.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (259.1ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:26:00.528886"], ["updated_at", "2016-01-27 15:26:00.528886"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Linen Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:26:00.530964"], ["updated_at", "2016-01-27 15:26:00.530964"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Steel Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:26:00.532805"], ["updated_at", "2016-01-27 15:26:00.532805"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Paper Hat"], ["site_id", 1], ["created_at", "2016-01-27 15:26:00.534374"], ["updated_at", "2016-01-27 15:26:00.534374"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Iron Plate"], ["site_id", 1], ["created_at", "2016-01-27 15:26:00.535849"], ["updated_at", "2016-01-27 15:26:00.535849"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (9.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:26:00.551581"], ["updated_at", "2016-01-27 15:26:00.551581"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:26:00.560835"], ["updated_at", "2016-01-27 15:26:00.560835"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:27:06.878415"], ["updated_at", "2016-01-27 15:27:06.878415"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Copper Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:06.894118"], ["updated_at", "2016-01-27 15:27:06.894118"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Silk Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:06.896250"], ["updated_at", "2016-01-27 15:27:06.896250"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Marble Chair"], ["site_id", 1], ["created_at", "2016-01-27 15:27:06.897670"], ["updated_at", "2016-01-27 15:27:06.897670"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Aluminum Keyboard"], ["site_id", 1], ["created_at", "2016-01-27 15:27:06.899015"], ["updated_at", "2016-01-27 15:27:06.899015"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (22.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (186.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (258.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:27:07.176526"], ["updated_at", "2016-01-27 15:27:07.176526"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Bronze Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:07.178605"], ["updated_at", "2016-01-27 15:27:07.178605"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Aluminum Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:07.180510"], ["updated_at", "2016-01-27 15:27:07.180510"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Cotton Clock"], ["site_id", 1], ["created_at", "2016-01-27 15:27:07.182384"], ["updated_at", "2016-01-27 15:27:07.182384"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wool Bottle"], ["site_id", 1], ["created_at", "2016-01-27 15:27:07.183955"], ["updated_at", "2016-01-27 15:27:07.183955"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (8.6ms) Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:27:07.198011"], ["updated_at", "2016-01-27 15:27:07.198011"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Wisconsin"], ["key", "wisconsin"], ["created_at", "2016-01-27 15:27:07.202554"], ["updated_at", "2016-01-27 15:27:07.202554"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Cotton Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:07.204929"], ["updated_at", "2016-01-27 15:27:07.204929"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Idaho"], ["key", "idaho"], ["created_at", "2016-01-27 15:27:07.207196"], ["updated_at", "2016-01-27 15:27:07.207196"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Copper Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:27:07.208516"], ["updated_at", "2016-01-27 15:27:07.208516"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Wisconsin"], ["key", "wisconsin"], ["created_at", "2016-01-27 15:27:07.212006"], ["updated_at", "2016-01-27 15:27:07.212006"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Linen Knife"], ["site_id", 1], ["site_item_category_id", 3], ["created_at", "2016-01-27 15:27:07.214078"], ["updated_at", "2016-01-27 15:27:07.214078"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "New Mexico"], ["key", "new-mexico"], ["created_at", "2016-01-27 15:27:07.216264"], ["updated_at", "2016-01-27 15:27:07.216264"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Aluminum Gloves"], ["site_id", 1], ["site_item_category_id", 4], ["created_at", "2016-01-27 15:27:07.217620"], ["updated_at", "2016-01-27 15:27:07.217620"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.2ms) Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.1ms) Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:27:07.235430"], ["updated_at", "2016-01-27 15:27:07.235430"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Wyoming"], ["key", "wyoming"], ["created_at", "2016-01-27 15:27:07.237699"], ["updated_at", "2016-01-27 15:27:07.237699"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Rubber Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:07.239485"], ["updated_at", "2016-01-27 15:27:07.239485"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Washington"], ["key", "washington"], ["created_at", "2016-01-27 15:27:07.241698"], ["updated_at", "2016-01-27 15:27:07.241698"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Rubber Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:27:07.243136"], ["updated_at", "2016-01-27 15:27:07.243136"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "North Carolina"], ["key", "north-carolina"], ["created_at", "2016-01-27 15:27:07.245604"], ["updated_at", "2016-01-27 15:27:07.245604"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Paper Computer"], ["site_id", 1], ["site_item_category_id", 3], ["created_at", "2016-01-27 15:27:07.247858"], ["updated_at", "2016-01-27 15:27:07.247858"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Indiana"], ["key", "indiana"], ["created_at", "2016-01-27 15:27:07.251479"], ["updated_at", "2016-01-27 15:27:07.251479"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Bronze Chair"], ["site_id", 1], ["site_item_category_id", 4], ["created_at", "2016-01-27 15:27:07.253327"], ["updated_at", "2016-01-27 15:27:07.253327"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.8ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.9ms) Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (25.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:27:25.096610"], ["updated_at", "2016-01-27 15:27:25.096610"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Leather Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:25.114466"], ["updated_at", "2016-01-27 15:27:25.114466"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Leather Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:25.116659"], ["updated_at", "2016-01-27 15:27:25.116659"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wool Car"], ["site_id", 1], ["created_at", "2016-01-27 15:27:25.118145"], ["updated_at", "2016-01-27 15:27:25.118145"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Cotton Car"], ["site_id", 1], ["created_at", "2016-01-27 15:27:25.119525"], ["updated_at", "2016-01-27 15:27:25.119525"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (23.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (190.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (267.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:27:25.407935"], ["updated_at", "2016-01-27 15:27:25.407935"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Aluminum Shirt"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:25.410309"], ["updated_at", "2016-01-27 15:27:25.410309"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Iron Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:25.412589"], ["updated_at", "2016-01-27 15:27:25.412589"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Bench"], ["site_id", 1], ["created_at", "2016-01-27 15:27:25.414347"], ["updated_at", "2016-01-27 15:27:25.414347"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Chair"], ["site_id", 1], ["created_at", "2016-01-27 15:27:25.416638"], ["updated_at", "2016-01-27 15:27:25.416638"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (10.3ms) Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:27:25.434558"], ["updated_at", "2016-01-27 15:27:25.434558"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "corporis"], ["key", "corporis"], ["created_at", "2016-01-27 15:27:25.439816"], ["updated_at", "2016-01-27 15:27:25.439816"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Plastic Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:25.444617"], ["updated_at", "2016-01-27 15:27:25.444617"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "accusantium"], ["key", "accusantium"], ["created_at", "2016-01-27 15:27:25.448474"], ["updated_at", "2016-01-27 15:27:25.448474"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Copper Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:27:25.450121"], ["updated_at", "2016-01-27 15:27:25.450121"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cum"], ["key", "cum"], ["created_at", "2016-01-27 15:27:25.452329"], ["updated_at", "2016-01-27 15:27:25.452329"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Steel Plate"], ["site_id", 1], ["site_item_category_id", 3], ["created_at", "2016-01-27 15:27:25.453977"], ["updated_at", "2016-01-27 15:27:25.453977"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-27 15:27:25.456175"], ["updated_at", "2016-01-27 15:27:25.456175"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Plate"], ["site_id", 1], ["site_item_category_id", 4], ["created_at", "2016-01-27 15:27:25.457504"], ["updated_at", "2016-01-27 15:27:25.457504"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.4ms) Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.9ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.0ms) Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:27:25.479034"], ["updated_at", "2016-01-27 15:27:25.479034"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nesciunt"], ["key", "nesciunt"], ["created_at", "2016-01-27 15:27:25.481816"], ["updated_at", "2016-01-27 15:27:25.481816"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:27:25.483726"], ["updated_at", "2016-01-27 15:27:25.483726"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "similique"], ["key", "similique"], ["created_at", "2016-01-27 15:27:25.485902"], ["updated_at", "2016-01-27 15:27:25.485902"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Copper Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:27:25.487658"], ["updated_at", "2016-01-27 15:27:25.487658"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "debitis"], ["key", "debitis"], ["created_at", "2016-01-27 15:27:25.489908"], ["updated_at", "2016-01-27 15:27:25.489908"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wooden Shoes"], ["site_id", 1], ["site_item_category_id", 3], ["created_at", "2016-01-27 15:27:25.492344"], ["updated_at", "2016-01-27 15:27:25.492344"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "non"], ["key", "non"], ["created_at", "2016-01-27 15:27:25.496106"], ["updated_at", "2016-01-27 15:27:25.496106"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Rubber Knife"], ["site_id", 1], ["site_item_category_id", 4], ["created_at", "2016-01-27 15:27:25.498080"], ["updated_at", "2016-01-27 15:27:25.498080"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.6ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.9ms) Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (29.7ms) Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (1.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:29:18.825867"], ["updated_at", "2016-01-27 15:29:18.825867"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Granite Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:18.841930"], ["updated_at", "2016-01-27 15:29:18.841930"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Silk Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:18.844170"], ["updated_at", "2016-01-27 15:29:18.844170"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Granite Wallet"], ["site_id", 1], ["created_at", "2016-01-27 15:29:18.845650"], ["updated_at", "2016-01-27 15:29:18.845650"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Granite Lamp"], ["site_id", 1], ["created_at", "2016-01-27 15:29:18.847042"], ["updated_at", "2016-01-27 15:29:18.847042"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (23.2ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (185.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (259.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:29:19.125444"], ["updated_at", "2016-01-27 15:29:19.125444"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Iron Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:19.127766"], ["updated_at", "2016-01-27 15:29:19.127766"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Steel Hat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:19.129912"], ["updated_at", "2016-01-27 15:29:19.129912"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Shoes"], ["site_id", 1], ["created_at", "2016-01-27 15:29:19.132323"], ["updated_at", "2016-01-27 15:29:19.132323"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wool Bag"], ["site_id", 1], ["created_at", "2016-01-27 15:29:19.134394"], ["updated_at", "2016-01-27 15:29:19.134394"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (8.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:29:19.148575"], ["updated_at", "2016-01-27 15:29:19.148575"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsam"], ["key", "ipsam"], ["created_at", "2016-01-27 15:29:19.153673"], ["updated_at", "2016-01-27 15:29:19.153673"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Iron Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:19.156330"], ["updated_at", "2016-01-27 15:29:19.156330"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rem"], ["key", "rem"], ["created_at", "2016-01-27 15:29:19.158963"], ["updated_at", "2016-01-27 15:29:19.158963"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Silk Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:29:19.162005"], ["updated_at", "2016-01-27 15:29:19.162005"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sunt"], ["key", "sunt"], ["created_at", "2016-01-27 15:29:19.166589"], ["updated_at", "2016-01-27 15:29:19.166589"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wool Car"], ["site_id", 1], ["site_item_category_id", 3], ["created_at", "2016-01-27 15:29:19.168074"], ["updated_at", "2016-01-27 15:29:19.168074"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "hic"], ["key", "hic"], ["created_at", "2016-01-27 15:29:19.170051"], ["updated_at", "2016-01-27 15:29:19.170051"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Plastic Computer"], ["site_id", 1], ["site_item_category_id", 4], ["created_at", "2016-01-27 15:29:19.171274"], ["updated_at", "2016-01-27 15:29:19.171274"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.2ms) Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:29:19.191083"], ["updated_at", "2016-01-27 15:29:19.191083"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsa"], ["key", "ipsa"], ["created_at", "2016-01-27 15:29:19.193446"], ["updated_at", "2016-01-27 15:29:19.193446"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Copper Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:19.195152"], ["updated_at", "2016-01-27 15:29:19.195152"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-27 15:29:19.197448"], ["updated_at", "2016-01-27 15:29:19.197448"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Copper Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:29:19.199304"], ["updated_at", "2016-01-27 15:29:19.199304"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 15:29:19.201768"], ["updated_at", "2016-01-27 15:29:19.201768"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Plastic Keyboard"], ["site_id", 1], ["site_item_category_id", 3], ["created_at", "2016-01-27 15:29:19.204520"], ["updated_at", "2016-01-27 15:29:19.204520"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consequatur"], ["key", "consequatur"], ["created_at", "2016-01-27 15:29:19.207497"], ["updated_at", "2016-01-27 15:29:19.207497"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Copper Plate"], ["site_id", 1], ["site_item_category_id", 4], ["created_at", "2016-01-27 15:29:19.209701"], ["updated_at", "2016-01-27 15:29:19.209701"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.2ms) Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (8.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (30.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:29:36.080238"], ["updated_at", "2016-01-27 15:29:36.080238"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Concrete Wallet"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:36.096030"], ["updated_at", "2016-01-27 15:29:36.096030"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Copper Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:36.098110"], ["updated_at", "2016-01-27 15:29:36.098110"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wool Plate"], ["site_id", 1], ["created_at", "2016-01-27 15:29:36.099522"], ["updated_at", "2016-01-27 15:29:36.099522"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Iron Shirt"], ["site_id", 1], ["created_at", "2016-01-27 15:29:36.100873"], ["updated_at", "2016-01-27 15:29:36.100873"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (23.2ms) Portfolio::SiteItemCategory Load (0.3ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (187.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (263.4ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:29:36.383653"], ["updated_at", "2016-01-27 15:29:36.383653"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Aluminum Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:36.386099"], ["updated_at", "2016-01-27 15:29:36.386099"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Copper Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:36.388582"], ["updated_at", "2016-01-27 15:29:36.388582"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Marble Wallet"], ["site_id", 1], ["created_at", "2016-01-27 15:29:36.390309"], ["updated_at", "2016-01-27 15:29:36.390309"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Plate"], ["site_id", 1], ["created_at", "2016-01-27 15:29:36.392347"], ["updated_at", "2016-01-27 15:29:36.392347"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (8.4ms) Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:29:36.406434"], ["updated_at", "2016-01-27 15:29:36.406434"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 15:29:36.411482"], ["updated_at", "2016-01-27 15:29:36.411482"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Linen Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:36.414068"], ["updated_at", "2016-01-27 15:29:36.414068"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "expedita"], ["key", "expedita"], ["created_at", "2016-01-27 15:29:36.416515"], ["updated_at", "2016-01-27 15:29:36.416515"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Plastic Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:29:36.418157"], ["updated_at", "2016-01-27 15:29:36.418157"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "veritatis"], ["key", "veritatis"], ["created_at", "2016-01-27 15:29:36.422238"], ["updated_at", "2016-01-27 15:29:36.422238"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Plastic Gloves"], ["site_id", 1], ["site_item_category_id", 3], ["created_at", "2016-01-27 15:29:36.425208"], ["updated_at", "2016-01-27 15:29:36.425208"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-27 15:29:36.427509"], ["updated_at", "2016-01-27 15:29:36.427509"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Granite Watch"], ["site_id", 1], ["site_item_category_id", 4], ["created_at", "2016-01-27 15:29:36.428876"], ["updated_at", "2016-01-27 15:29:36.428876"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.1ms) Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:29:36.448747"], ["updated_at", "2016-01-27 15:29:36.448747"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "saepe"], ["key", "saepe"], ["created_at", "2016-01-27 15:29:36.451149"], ["updated_at", "2016-01-27 15:29:36.451149"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Concrete Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:29:36.452840"], ["updated_at", "2016-01-27 15:29:36.452840"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quas"], ["key", "quas"], ["created_at", "2016-01-27 15:29:36.454992"], ["updated_at", "2016-01-27 15:29:36.454992"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Linen Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:29:36.456906"], ["updated_at", "2016-01-27 15:29:36.456906"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "necessitatibus"], ["key", "necessitatibus"], ["created_at", "2016-01-27 15:29:36.460735"], ["updated_at", "2016-01-27 15:29:36.460735"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Steel Clock"], ["site_id", 1], ["site_item_category_id", 3], ["created_at", "2016-01-27 15:29:36.463056"], ["updated_at", "2016-01-27 15:29:36.463056"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "explicabo"], ["key", "explicabo"], ["created_at", "2016-01-27 15:29:36.467374"], ["updated_at", "2016-01-27 15:29:36.467374"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wooden Knife"], ["site_id", 1], ["site_item_category_id", 4], ["created_at", "2016-01-27 15:29:36.469091"], ["updated_at", "2016-01-27 15:29:36.469091"]]  (0.4ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.8ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (3.5ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.0ms) Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (8.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (34.5ms) Portfolio::SiteItemCategory Load (0.5ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (1.9ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:30:32.830964"], ["updated_at", "2016-01-27 15:30:32.830964"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Rubber Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:30:32.848500"], ["updated_at", "2016-01-27 15:30:32.848500"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Iron Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:30:32.850852"], ["updated_at", "2016-01-27 15:30:32.850852"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Bronze Coat"], ["site_id", 1], ["created_at", "2016-01-27 15:30:32.852416"], ["updated_at", "2016-01-27 15:30:32.852416"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Copper Plate"], ["site_id", 1], ["created_at", "2016-01-27 15:30:32.853871"], ["updated_at", "2016-01-27 15:30:32.853871"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (22.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (195.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (270.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:30:33.143621"], ["updated_at", "2016-01-27 15:30:33.143621"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Granite Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:30:33.145782"], ["updated_at", "2016-01-27 15:30:33.145782"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Plastic Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:30:33.147780"], ["updated_at", "2016-01-27 15:30:33.147780"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Concrete Bag"], ["site_id", 1], ["created_at", "2016-01-27 15:30:33.149327"], ["updated_at", "2016-01-27 15:30:33.149327"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wool Car"], ["site_id", 1], ["created_at", "2016-01-27 15:30:33.150759"], ["updated_at", "2016-01-27 15:30:33.150759"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (10.1ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:30:33.166471"], ["updated_at", "2016-01-27 15:30:33.166471"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-27 15:30:33.171758"], ["updated_at", "2016-01-27 15:30:33.171758"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Leather Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:30:33.174587"], ["updated_at", "2016-01-27 15:30:33.174587"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptates"], ["key", "voluptates"], ["created_at", "2016-01-27 15:30:33.176783"], ["updated_at", "2016-01-27 15:30:33.176783"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Copper Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:30:33.178524"], ["updated_at", "2016-01-27 15:30:33.178524"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quos"], ["key", "quos"], ["created_at", "2016-01-27 15:30:33.180386"], ["updated_at", "2016-01-27 15:30:33.180386"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Rubber Knife"], ["site_id", 1], ["site_item_category_id", 3], ["created_at", "2016-01-27 15:30:33.182152"], ["updated_at", "2016-01-27 15:30:33.182152"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eaque"], ["key", "eaque"], ["created_at", "2016-01-27 15:30:33.186193"], ["updated_at", "2016-01-27 15:30:33.186193"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Granite Shirt"], ["site_id", 1], ["site_item_category_id", 4], ["created_at", "2016-01-27 15:30:33.187722"], ["updated_at", "2016-01-27 15:30:33.187722"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.4ms) Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (16.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:30:33.211352"], ["updated_at", "2016-01-27 15:30:33.211352"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 15:30:33.214434"], ["updated_at", "2016-01-27 15:30:33.214434"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Steel Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:30:33.216850"], ["updated_at", "2016-01-27 15:30:33.216850"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "corporis"], ["key", "corporis"], ["created_at", "2016-01-27 15:30:33.220115"], ["updated_at", "2016-01-27 15:30:33.220115"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Iron Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:30:33.222025"], ["updated_at", "2016-01-27 15:30:33.222025"]]  (1.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "occaecati"], ["key", "occaecati"], ["created_at", "2016-01-27 15:30:33.225820"], ["updated_at", "2016-01-27 15:30:33.225820"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.9ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Iron Chair"], ["site_id", 1], ["site_item_category_id", 3], ["created_at", "2016-01-27 15:30:33.229828"], ["updated_at", "2016-01-27 15:30:33.229828"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolorem"], ["key", "dolorem"], ["created_at", "2016-01-27 15:30:33.233158"], ["updated_at", "2016-01-27 15:30:33.233158"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Cotton Hat"], ["site_id", 1], ["site_item_category_id", 4], ["created_at", "2016-01-27 15:30:33.235718"], ["updated_at", "2016-01-27 15:30:33.235718"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.5ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.6ms) Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (10.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (33.7ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:33:50.160785"], ["updated_at", "2016-01-27 15:33:50.160785"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wooden Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:33:50.178474"], ["updated_at", "2016-01-27 15:33:50.178474"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Plastic Hat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:33:50.181244"], ["updated_at", "2016-01-27 15:33:50.181244"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Bronze Lamp"], ["site_id", 1], ["created_at", "2016-01-27 15:33:50.183362"], ["updated_at", "2016-01-27 15:33:50.183362"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Cotton Car"], ["site_id", 1], ["created_at", "2016-01-27 15:33:50.185232"], ["updated_at", "2016-01-27 15:33:50.185232"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (20.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (185.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (255.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:33:50.460084"], ["updated_at", "2016-01-27 15:33:50.460084"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Copper Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:33:50.462291"], ["updated_at", "2016-01-27 15:33:50.462291"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Linen Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:33:50.464404"], ["updated_at", "2016-01-27 15:33:50.464404"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Silk Computer"], ["site_id", 1], ["created_at", "2016-01-27 15:33:50.466061"], ["updated_at", "2016-01-27 15:33:50.466061"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Steel Knife"], ["site_id", 1], ["created_at", "2016-01-27 15:33:50.467814"], ["updated_at", "2016-01-27 15:33:50.467814"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (8.5ms) Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:33:50.481981"], ["updated_at", "2016-01-27 15:33:50.481981"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolor"], ["key", "dolor"], ["created_at", "2016-01-27 15:33:50.486646"], ["updated_at", "2016-01-27 15:33:50.486646"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "perspiciatis"], ["key", "perspiciatis"], ["created_at", "2016-01-27 15:33:50.488467"], ["updated_at", "2016-01-27 15:33:50.488467"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Concrete Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:33:50.491224"], ["updated_at", "2016-01-27 15:33:50.491224"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Steel Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:33:50.495264"], ["updated_at", "2016-01-27 15:33:50.495264"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Leather Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:33:50.497802"], ["updated_at", "2016-01-27 15:33:50.497802"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Wool Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:33:50.501322"], ["updated_at", "2016-01-27 15:33:50.501322"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Rubber Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:33:50.503629"], ["updated_at", "2016-01-27 15:33:50.503629"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Concrete Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:33:50.505369"], ["updated_at", "2016-01-27 15:33:50.505369"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Aluminum Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:33:50.507044"], ["updated_at", "2016-01-27 15:33:50.507044"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Iron Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:33:50.508901"], ["updated_at", "2016-01-27 15:33:50.508901"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 7]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 8]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.7ms) Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 4]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 5]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 6]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (15.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (33.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:33:50.553034"], ["updated_at", "2016-01-27 15:33:50.553034"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "vel"], ["key", "vel"], ["created_at", "2016-01-27 15:33:50.556675"], ["updated_at", "2016-01-27 15:33:50.556675"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "laudantium"], ["key", "laudantium"], ["created_at", "2016-01-27 15:33:50.559277"], ["updated_at", "2016-01-27 15:33:50.559277"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Iron Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:33:50.562935"], ["updated_at", "2016-01-27 15:33:50.562935"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Linen Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:33:50.571477"], ["updated_at", "2016-01-27 15:33:50.571477"]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Concrete Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:33:50.574102"], ["updated_at", "2016-01-27 15:33:50.574102"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Silk Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:33:50.577249"], ["updated_at", "2016-01-27 15:33:50.577249"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Granite Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:33:50.579835"], ["updated_at", "2016-01-27 15:33:50.579835"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Bronze Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:33:50.582702"], ["updated_at", "2016-01-27 15:33:50.582702"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Iron Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:33:50.588532"], ["updated_at", "2016-01-27 15:33:50.588532"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Concrete Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:33:50.591251"], ["updated_at", "2016-01-27 15:33:50.591251"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 7]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 8]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (14.3ms) Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 4]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 5]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 6]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (15.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (39.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:34:22.850637"], ["updated_at", "2016-01-27 15:34:22.850637"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Bronze Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:34:22.867556"], ["updated_at", "2016-01-27 15:34:22.867556"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Cotton Shirt"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:34:22.869667"], ["updated_at", "2016-01-27 15:34:22.869667"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Rubber Shirt"], ["site_id", 1], ["created_at", "2016-01-27 15:34:22.871089"], ["updated_at", "2016-01-27 15:34:22.871089"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Copper Hat"], ["site_id", 1], ["created_at", "2016-01-27 15:34:22.872418"], ["updated_at", "2016-01-27 15:34:22.872418"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (22.0ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (198.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (274.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:34:23.169329"], ["updated_at", "2016-01-27 15:34:23.169329"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Marble Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:34:23.171635"], ["updated_at", "2016-01-27 15:34:23.171635"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Silk Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:34:23.173577"], ["updated_at", "2016-01-27 15:34:23.173577"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Cotton Car"], ["site_id", 1], ["created_at", "2016-01-27 15:34:23.175155"], ["updated_at", "2016-01-27 15:34:23.175155"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Leather Shirt"], ["site_id", 1], ["created_at", "2016-01-27 15:34:23.176887"], ["updated_at", "2016-01-27 15:34:23.176887"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (9.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:34:23.191765"], ["updated_at", "2016-01-27 15:34:23.191765"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "impedit"], ["key", "impedit"], ["created_at", "2016-01-27 15:34:23.196082"], ["updated_at", "2016-01-27 15:34:23.196082"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quas"], ["key", "quas"], ["created_at", "2016-01-27 15:34:23.197971"], ["updated_at", "2016-01-27 15:34:23.197971"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Paper Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:34:23.201103"], ["updated_at", "2016-01-27 15:34:23.201103"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Linen Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:34:23.205057"], ["updated_at", "2016-01-27 15:34:23.205057"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Paper Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:34:23.207819"], ["updated_at", "2016-01-27 15:34:23.207819"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:34:23.209897"], ["updated_at", "2016-01-27 15:34:23.209897"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Paper Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:34:23.211745"], ["updated_at", "2016-01-27 15:34:23.211745"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Aluminum Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:34:23.213478"], ["updated_at", "2016-01-27 15:34:23.213478"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Aluminum Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:34:23.215459"], ["updated_at", "2016-01-27 15:34:23.215459"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Iron Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:34:23.219174"], ["updated_at", "2016-01-27 15:34:23.219174"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 5]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 6]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.3ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (16.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:34:23.245013"], ["updated_at", "2016-01-27 15:34:23.245013"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "omnis"], ["key", "omnis"], ["created_at", "2016-01-27 15:34:23.248150"], ["updated_at", "2016-01-27 15:34:23.248150"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quisquam"], ["key", "quisquam"], ["created_at", "2016-01-27 15:34:23.251533"], ["updated_at", "2016-01-27 15:34:23.251533"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wooden Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:34:23.254727"], ["updated_at", "2016-01-27 15:34:23.254727"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Plastic Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:34:23.257492"], ["updated_at", "2016-01-27 15:34:23.257492"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wooden Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:34:23.260101"], ["updated_at", "2016-01-27 15:34:23.260101"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Linen Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:34:23.263999"], ["updated_at", "2016-01-27 15:34:23.263999"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Rubber Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:34:23.267740"], ["updated_at", "2016-01-27 15:34:23.267740"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wooden Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:34:23.270843"], ["updated_at", "2016-01-27 15:34:23.270843"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Leather Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:34:23.274287"], ["updated_at", "2016-01-27 15:34:23.274287"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.5ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Rubber Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:34:23.284355"], ["updated_at", "2016-01-27 15:34:23.284355"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.4ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (9.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 5]] Portfolio::Site Load (0.3ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 6]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (26.0ms) Portfolio::SiteItemCategory Load (0.3ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:36:21.528966"], ["updated_at", "2016-01-27 15:36:21.528966"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Aluminum Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:21.546576"], ["updated_at", "2016-01-27 15:36:21.546576"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wooden Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:21.548770"], ["updated_at", "2016-01-27 15:36:21.548770"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Plate"], ["site_id", 1], ["created_at", "2016-01-27 15:36:21.550228"], ["updated_at", "2016-01-27 15:36:21.550228"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Iron Plate"], ["site_id", 1], ["created_at", "2016-01-27 15:36:21.551565"], ["updated_at", "2016-01-27 15:36:21.551565"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (10.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (23.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (190.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (265.6ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:36:21.836651"], ["updated_at", "2016-01-27 15:36:21.836651"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Granite Shirt"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:21.839008"], ["updated_at", "2016-01-27 15:36:21.839008"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Rubber Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:21.841017"], ["updated_at", "2016-01-27 15:36:21.841017"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Leather Car"], ["site_id", 1], ["created_at", "2016-01-27 15:36:21.842607"], ["updated_at", "2016-01-27 15:36:21.842607"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Bronze Knife"], ["site_id", 1], ["created_at", "2016-01-27 15:36:21.844441"], ["updated_at", "2016-01-27 15:36:21.844441"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (8.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:36:21.859598"], ["updated_at", "2016-01-27 15:36:21.859598"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eos"], ["key", "eos"], ["created_at", "2016-01-27 15:36:21.864403"], ["updated_at", "2016-01-27 15:36:21.864403"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eum"], ["key", "eum"], ["created_at", "2016-01-27 15:36:21.866709"], ["updated_at", "2016-01-27 15:36:21.866709"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Aluminum Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:21.870451"], ["updated_at", "2016-01-27 15:36:21.870451"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Iron Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:36:21.872951"], ["updated_at", "2016-01-27 15:36:21.872951"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Granite Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:36:21.876472"], ["updated_at", "2016-01-27 15:36:21.876472"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Paper Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:36:21.878549"], ["updated_at", "2016-01-27 15:36:21.878549"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.3ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:36:21.898145"], ["updated_at", "2016-01-27 15:36:21.898145"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "saepe"], ["key", "saepe"], ["created_at", "2016-01-27 15:36:21.900218"], ["updated_at", "2016-01-27 15:36:21.900218"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nihil"], ["key", "nihil"], ["created_at", "2016-01-27 15:36:21.901905"], ["updated_at", "2016-01-27 15:36:21.901905"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Copper Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:21.903835"], ["updated_at", "2016-01-27 15:36:21.903835"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Silk Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:36:21.905965"], ["updated_at", "2016-01-27 15:36:21.905965"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Steel Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:36:21.908159"], ["updated_at", "2016-01-27 15:36:21.908159"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Plastic Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:36:21.910067"], ["updated_at", "2016-01-27 15:36:21.910067"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (25.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:36:33.142147"], ["updated_at", "2016-01-27 15:36:33.142147"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Iron Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:33.158407"], ["updated_at", "2016-01-27 15:36:33.158407"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Iron Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:33.160960"], ["updated_at", "2016-01-27 15:36:33.160960"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Plastic Pants"], ["site_id", 1], ["created_at", "2016-01-27 15:36:33.162533"], ["updated_at", "2016-01-27 15:36:33.162533"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Copper Bottle"], ["site_id", 1], ["created_at", "2016-01-27 15:36:33.163897"], ["updated_at", "2016-01-27 15:36:33.163897"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (23.0ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (188.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (263.3ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:36:33.446110"], ["updated_at", "2016-01-27 15:36:33.446110"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Bench"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:33.448330"], ["updated_at", "2016-01-27 15:36:33.448330"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Leather Hat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:33.450214"], ["updated_at", "2016-01-27 15:36:33.450214"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Copper Computer"], ["site_id", 1], ["created_at", "2016-01-27 15:36:33.451815"], ["updated_at", "2016-01-27 15:36:33.451815"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Plastic Lamp"], ["site_id", 1], ["created_at", "2016-01-27 15:36:33.453252"], ["updated_at", "2016-01-27 15:36:33.453252"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (9.1ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:36:33.468207"], ["updated_at", "2016-01-27 15:36:33.468207"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 15:36:33.472591"], ["updated_at", "2016-01-27 15:36:33.472591"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-27 15:36:33.474344"], ["updated_at", "2016-01-27 15:36:33.474344"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Plastic Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:33.477138"], ["updated_at", "2016-01-27 15:36:33.477138"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:36:33.480025"], ["updated_at", "2016-01-27 15:36:33.480025"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Wooden Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:36:33.483944"], ["updated_at", "2016-01-27 15:36:33.483944"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Copper Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:36:33.485884"], ["updated_at", "2016-01-27 15:36:33.485884"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 4]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.3ms) Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:36:33.512705"], ["updated_at", "2016-01-27 15:36:33.512705"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 15:36:33.514846"], ["updated_at", "2016-01-27 15:36:33.514846"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "omnis"], ["key", "omnis"], ["created_at", "2016-01-27 15:36:33.516879"], ["updated_at", "2016-01-27 15:36:33.516879"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Granite Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:36:33.519236"], ["updated_at", "2016-01-27 15:36:33.519236"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Plate"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:36:33.522577"], ["updated_at", "2016-01-27 15:36:33.522577"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Plastic Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:36:33.526852"], ["updated_at", "2016-01-27 15:36:33.526852"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Steel Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:36:33.530895"], ["updated_at", "2016-01-27 15:36:33.530895"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 1]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 4]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.2ms) Portfolio::SiteProject Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? LIMIT 1 [["site_item_category_id", 2]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? [["site_item_category_id", 2]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (9.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (35.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:37:05.181825"], ["updated_at", "2016-01-27 15:37:05.181825"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Leather Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:37:05.199992"], ["updated_at", "2016-01-27 15:37:05.199992"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Granite Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:37:05.202423"], ["updated_at", "2016-01-27 15:37:05.202423"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Rubber Knife"], ["site_id", 1], ["created_at", "2016-01-27 15:37:05.203908"], ["updated_at", "2016-01-27 15:37:05.203908"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Paper Knife"], ["site_id", 1], ["created_at", "2016-01-27 15:37:05.205319"], ["updated_at", "2016-01-27 15:37:05.205319"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (10.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (23.5ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (188.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (264.5ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:37:05.503263"], ["updated_at", "2016-01-27 15:37:05.503263"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Steel Wallet"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:37:05.505720"], ["updated_at", "2016-01-27 15:37:05.505720"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Bronze Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:37:05.507978"], ["updated_at", "2016-01-27 15:37:05.507978"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Rubber Table"], ["site_id", 1], ["created_at", "2016-01-27 15:37:05.510227"], ["updated_at", "2016-01-27 15:37:05.510227"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Aluminum Bag"], ["site_id", 1], ["created_at", "2016-01-27 15:37:05.512044"], ["updated_at", "2016-01-27 15:37:05.512044"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.8ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (9.9ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:37:05.530499"], ["updated_at", "2016-01-27 15:37:05.530499"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sequi"], ["key", "sequi"], ["created_at", "2016-01-27 15:37:05.538869"], ["updated_at", "2016-01-27 15:37:05.538869"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "architecto"], ["key", "architecto"], ["created_at", "2016-01-27 15:37:05.541400"], ["updated_at", "2016-01-27 15:37:05.541400"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:37:05.545709"], ["updated_at", "2016-01-27 15:37:05.545709"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Granite Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:37:05.547819"], ["updated_at", "2016-01-27 15:37:05.547819"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:37:05.549856"], ["updated_at", "2016-01-27 15:37:05.549856"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Aluminum Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:37:05.552047"], ["updated_at", "2016-01-27 15:37:05.552047"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.9ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.9ms) Portfolio::SiteItemCategory Load (0.6ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:37:05.587736"], ["updated_at", "2016-01-27 15:37:05.587736"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 15:37:05.590499"], ["updated_at", "2016-01-27 15:37:05.590499"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ea"], ["key", "ea"], ["created_at", "2016-01-27 15:37:05.593460"], ["updated_at", "2016-01-27 15:37:05.593460"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Cotton Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 15:37:05.596412"], ["updated_at", "2016-01-27 15:37:05.596412"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Silk Computer"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 15:37:05.599630"], ["updated_at", "2016-01-27 15:37:05.599630"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Granite Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 15:37:05.602269"], ["updated_at", "2016-01-27 15:37:05.602269"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Leather Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 15:37:05.605426"], ["updated_at", "2016-01-27 15:37:05.605426"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.3ms)  (0.6ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:49:25.842586"], ["updated_at", "2016-01-27 15:49:25.842586"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (36.7ms)  (1.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:50:13.415965"], ["updated_at", "2016-01-27 15:50:13.415965"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (34.4ms)  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:51:43.113284"], ["updated_at", "2016-01-27 15:51:43.113284"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (31.5ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:52:43.410868"], ["updated_at", "2016-01-27 15:52:43.410868"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (34.0ms)  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:53:26.313998"], ["updated_at", "2016-01-27 15:53:26.313998"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (34.2ms)  (1.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 15:56:08.041742"], ["updated_at", "2016-01-27 15:56:08.041742"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (27.8ms)  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 16:00:09.341713"], ["updated_at", "2016-01-27 16:00:09.341713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (25.8ms)  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["person_name", "some dude"], ["job_title", "manager"], ["key", "some_dude"], ["created_at", "2016-01-27 16:01:14.604776"], ["updated_at", "2016-01-27 16:01:14.604776"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (4.4ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (30.9ms)  (1.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["person_name", "Jody Cummings"], ["job_title", "Direct Interactions Coordinator"], ["greetings", "Officiis pariatur incidunt dolores sint temporibus enim nemo in."], ["key", "jody_cummings"], ["created_at", "2016-01-27 16:16:04.096061"], ["updated_at", "2016-01-27 16:16:04.096061"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (25.4ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Alivia Strosin"], ["job_title", "Forward Markets Strategist"], ["greetings", "Impedit quidem omnis vel enim veritatis facere sint."], ["summary", "Totam rem amet quis dolores porro deleniti. Fuga voluptates in facilis. Ea minus debitis quia pariatur molestias architecto."], ["key", "mrs_alivia_strosin"], ["created_at", "2016-01-27 16:17:14.099082"], ["updated_at", "2016-01-27 16:17:14.099082"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (28.2ms)  (1.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Christ Gislason"], ["job_title", "International Web Strategist"], ["greetings", "Et et recusandae ut modi quisquam cumque odio vero."], ["summary", "Sed assumenda qui vitae minima sit exercitationem veritatis. Velit commodi maiores porro. Temporibus accusamus rerum sed et dolores. Doloremque veniam repellendus nulla."], ["key", "christ_gislason"], ["created_at", "2016-01-27 16:56:52.178554"], ["updated_at", "2016-01-27 16:56:52.178554"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sed"], ["key", "sed"], ["created_at", "2016-01-27 16:56:52.184846"], ["updated_at", "2016-01-27 16:56:52.184846"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "earum"], ["key", "earum"], ["created_at", "2016-01-27 16:56:52.186546"], ["updated_at", "2016-01-27 16:56:52.186546"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Paper Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 16:56:52.202304"], ["updated_at", "2016-01-27 16:56:52.202304"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Silk Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 16:56:52.204551"], ["updated_at", "2016-01-27 16:56:52.204551"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Iron Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 16:56:52.207503"], ["updated_at", "2016-01-27 16:56:52.207503"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Steel Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 16:56:52.209465"], ["updated_at", "2016-01-27 16:56:52.209465"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (4.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (27.0ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Otis Bergstrom DVM"], ["job_title", "Corporate Usability Director"], ["greetings", "Velit a sed voluptas minima consectetur quo aliquam voluptatum."], ["summary", "Autem ullam rem libero excepturi. Excepturi incidunt temporibus reprehenderit omnis sit dolor itaque. Corporis dolores rerum vel. At eos explicabo velit."], ["key", "otis_bergstrom_dvm"], ["created_at", "2016-01-27 16:56:52.262453"], ["updated_at", "2016-01-27 16:56:52.262453"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "saepe"], ["key", "saepe"], ["created_at", "2016-01-27 16:56:52.264208"], ["updated_at", "2016-01-27 16:56:52.264208"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "porro"], ["key", "porro"], ["created_at", "2016-01-27 16:56:52.265581"], ["updated_at", "2016-01-27 16:56:52.265581"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Plastic Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 16:56:52.267097"], ["updated_at", "2016-01-27 16:56:52.267097"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Plastic Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 16:56:52.268677"], ["updated_at", "2016-01-27 16:56:52.268677"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wool Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 16:56:52.270682"], ["updated_at", "2016-01-27 16:56:52.270682"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Concrete Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 16:56:52.272266"], ["updated_at", "2016-01-27 16:56:52.272266"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.6ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (1.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Eileen Keebler"], ["job_title", "Forward Configuration Engineer"], ["greetings", "Alias quia ut odio."], ["summary", "Quasi ut qui enim similique est. Sequi voluptatibus sit corporis quibusdam voluptas. Porro magnam aut repellendus commodi facilis corporis iusto. Totam aut error animi. Est aliquam et repellat eveniet."], ["key", "eileen_keebler"], ["created_at", "2016-01-27 17:00:50.539586"], ["updated_at", "2016-01-27 17:00:50.539586"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 17:00:50.546298"], ["updated_at", "2016-01-27 17:00:50.546298"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consequatur"], ["key", "consequatur"], ["created_at", "2016-01-27 17:00:50.548291"], ["updated_at", "2016-01-27 17:00:50.548291"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Paper Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:00:50.563115"], ["updated_at", "2016-01-27 17:00:50.563115"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Iron Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:00:50.565144"], ["updated_at", "2016-01-27 17:00:50.565144"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Aluminum Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:00:50.566717"], ["updated_at", "2016-01-27 17:00:50.566717"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Linen Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:00:50.568716"], ["updated_at", "2016-01-27 17:00:50.568716"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (4.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (27.3ms)  (1.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bo Macejkovic"], ["job_title", "Dynamic Usability Technician"], ["greetings", "Sit tenetur aut sit."], ["summary", "Nihil qui autem omnis rerum accusamus alias suscipit. Et accusamus recusandae qui consequatur dolorem. Sed sit quia id sit. Ut nesciunt deserunt aspernatur quibusdam in ullam. Cupiditate aliquam et rerum animi."], ["key", "bo_macejkovic"], ["created_at", "2016-01-27 17:00:50.622498"], ["updated_at", "2016-01-27 17:00:50.622498"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 17:00:50.624828"], ["updated_at", "2016-01-27 17:00:50.624828"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ducimus"], ["key", "ducimus"], ["created_at", "2016-01-27 17:00:50.626505"], ["updated_at", "2016-01-27 17:00:50.626505"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wooden Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:00:50.628103"], ["updated_at", "2016-01-27 17:00:50.628103"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Steel Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:00:50.629893"], ["updated_at", "2016-01-27 17:00:50.629893"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Aluminum Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:00:50.631672"], ["updated_at", "2016-01-27 17:00:50.631672"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Copper Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:00:50.633178"], ["updated_at", "2016-01-27 17:00:50.633178"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Daniela Lockman II"], ["job_title", "Future Directives Technician"], ["greetings", "Ut sit distinctio delectus possimus adipisci."], ["summary", "Unde hic aspernatur ut nesciunt sed. Nemo dolore ducimus itaque repellendus. Possimus et ut et odio debitis."], ["key", "daniela_lockman_ii"], ["created_at", "2016-01-27 17:04:36.416900"], ["updated_at", "2016-01-27 17:04:36.416900"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sapiente"], ["key", "sapiente"], ["created_at", "2016-01-27 17:04:36.423279"], ["updated_at", "2016-01-27 17:04:36.423279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 17:04:36.425174"], ["updated_at", "2016-01-27 17:04:36.425174"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Concrete Computer"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:04:36.439886"], ["updated_at", "2016-01-27 17:04:36.439886"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Paper Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:04:36.441932"], ["updated_at", "2016-01-27 17:04:36.441932"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Cotton Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:04:36.444231"], ["updated_at", "2016-01-27 17:04:36.444231"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Granite Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:04:36.446083"], ["updated_at", "2016-01-27 17:04:36.446083"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (257.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (285.4ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sandra Bahringer DDS"], ["job_title", "Customer Functionality Orchestrator"], ["greetings", "Suscipit quis maiores sit laudantium natus ratione molestias."], ["summary", "Dolore commodi repellat a velit. Est pariatur suscipit molestias quas. Alias optio architecto similique. Harum architecto dolorem doloribus sit. Voluptates sunt et ducimus et."], ["key", "sandra_bahringer_dds"], ["created_at", "2016-01-27 17:04:36.758339"], ["updated_at", "2016-01-27 17:04:36.758339"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "atque"], ["key", "atque"], ["created_at", "2016-01-27 17:04:36.760369"], ["updated_at", "2016-01-27 17:04:36.760369"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolor"], ["key", "dolor"], ["created_at", "2016-01-27 17:04:36.761943"], ["updated_at", "2016-01-27 17:04:36.761943"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Copper Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:04:36.763759"], ["updated_at", "2016-01-27 17:04:36.763759"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Silk Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:04:36.766113"], ["updated_at", "2016-01-27 17:04:36.766113"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Concrete Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:04:36.768564"], ["updated_at", "2016-01-27 17:04:36.768564"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Copper Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:04:36.771334"], ["updated_at", "2016-01-27 17:04:36.771334"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (47.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (50.0ms)  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mona Renner DDS"], ["job_title", "National Implementation Engineer"], ["greetings", "Laborum quam pariatur voluptatem repellat unde."], ["summary", "Magnam dolor doloremque eius eaque. Optio nemo ut sit dolore non. Aut magni facere corrupti provident voluptates sequi aperiam. Quisquam delectus distinctio animi debitis quo nam sapiente."], ["key", "mona_renner_dds"], ["created_at", "2016-01-27 17:08:03.960524"], ["updated_at", "2016-01-27 17:08:03.960524"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sint"], ["key", "sint"], ["created_at", "2016-01-27 17:08:03.966836"], ["updated_at", "2016-01-27 17:08:03.966836"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tempore"], ["key", "tempore"], ["created_at", "2016-01-27 17:08:03.968554"], ["updated_at", "2016-01-27 17:08:03.968554"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:08:03.982385"], ["updated_at", "2016-01-27 17:08:03.982385"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Granite Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:08:03.985592"], ["updated_at", "2016-01-27 17:08:03.985592"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Rubber Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:08:03.987284"], ["updated_at", "2016-01-27 17:08:03.987284"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Cotton Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:08:03.988787"], ["updated_at", "2016-01-27 17:08:03.988787"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (166.4ms) Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (199.4ms)  (1.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kristopher Dare"], ["job_title", "Corporate Usability Associate"], ["greetings", "Nihil nihil veniam consequatur nesciunt at."], ["summary", "Consequuntur ut iusto eaque consequatur. Error amet numquam. Magni doloribus maxime. Qui facilis quae ipsam."], ["key", "kristopher_dare"], ["created_at", "2016-01-27 17:08:04.216424"], ["updated_at", "2016-01-27 17:08:04.216424"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "commodi"], ["key", "commodi"], ["created_at", "2016-01-27 17:08:04.238124"], ["updated_at", "2016-01-27 17:08:04.238124"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 17:08:04.240112"], ["updated_at", "2016-01-27 17:08:04.240112"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Cotton Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:08:04.242194"], ["updated_at", "2016-01-27 17:08:04.242194"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Leather Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:08:04.244051"], ["updated_at", "2016-01-27 17:08:04.244051"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Aluminum Clock"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:08:04.245730"], ["updated_at", "2016-01-27 17:08:04.245730"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wool Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:08:04.247439"], ["updated_at", "2016-01-27 17:08:04.247439"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (3.9ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (7.8ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1  (1.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Wendy Davis"], ["job_title", "Customer Tactics Architect"], ["greetings", "Nobis quia minus doloribus."], ["summary", "Aut ullam delectus. Enim accusantium tempora similique a. Sunt fugiat beatae optio. Atque nemo reprehenderit ut magnam. Laudantium sit amet mollitia nam qui eos."], ["key", "wendy_davis"], ["created_at", "2016-01-27 17:08:57.800056"], ["updated_at", "2016-01-27 17:08:57.800056"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "explicabo"], ["key", "explicabo"], ["created_at", "2016-01-27 17:08:57.806507"], ["updated_at", "2016-01-27 17:08:57.806507"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 17:08:57.808201"], ["updated_at", "2016-01-27 17:08:57.808201"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Plastic Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:08:57.823296"], ["updated_at", "2016-01-27 17:08:57.823296"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Rubber Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:08:57.825357"], ["updated_at", "2016-01-27 17:08:57.825357"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Aluminum Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:08:57.826969"], ["updated_at", "2016-01-27 17:08:57.826969"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Aluminum Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:08:57.828491"], ["updated_at", "2016-01-27 17:08:57.828491"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (174.8ms) Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (209.1ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alessandra Hilpert"], ["job_title", "Corporate Identity Representative"], ["greetings", "Voluptate id molestiae consequatur ad expedita a cumque beatae."], ["summary", "Omnis et et et est vel. Voluptatem natus autem alias quia ut. Ex aliquid iste."], ["key", "alessandra_hilpert"], ["created_at", "2016-01-27 17:08:58.065659"], ["updated_at", "2016-01-27 17:08:58.065659"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aliquid"], ["key", "aliquid"], ["created_at", "2016-01-27 17:08:58.087773"], ["updated_at", "2016-01-27 17:08:58.087773"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "perspiciatis"], ["key", "perspiciatis"], ["created_at", "2016-01-27 17:08:58.089734"], ["updated_at", "2016-01-27 17:08:58.089734"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Leather Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:08:58.091708"], ["updated_at", "2016-01-27 17:08:58.091708"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Silk Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:08:58.093941"], ["updated_at", "2016-01-27 17:08:58.093941"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:08:58.095888"], ["updated_at", "2016-01-27 17:08:58.095888"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:08:58.097720"], ["updated_at", "2016-01-27 17:08:58.097720"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (2.7ms) Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (5.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Rosemarie Hettinger"], ["job_title", "International Operations Liaison"], ["greetings", "Veritatis at nemo ut dignissimos dicta."], ["summary", "Et quis ut. Tempore sint reiciendis. Rem eligendi libero accusantium expedita dignissimos."], ["key", "rosemarie_hettinger"], ["created_at", "2016-01-27 17:09:18.182008"], ["updated_at", "2016-01-27 17:09:18.182008"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 17:09:18.188498"], ["updated_at", "2016-01-27 17:09:18.188498"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 17:09:18.190709"], ["updated_at", "2016-01-27 17:09:18.190709"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:09:18.205560"], ["updated_at", "2016-01-27 17:09:18.205560"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Cotton Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:09:18.208166"], ["updated_at", "2016-01-27 17:09:18.208166"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Leather Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:09:18.210415"], ["updated_at", "2016-01-27 17:09:18.210415"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wooden Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:09:18.212109"], ["updated_at", "2016-01-27 17:09:18.212109"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.8ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (196.5ms) Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (232.5ms)  (1.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Maryse Runolfsdottir"], ["job_title", "Human Mobility Associate"], ["greetings", "Facere voluptas voluptatibus eaque dolor et."], ["summary", "Qui ipsam ullam placeat quia veritatis quod aperiam. Labore quo ut nostrum. Quia eum rerum ut est amet ut. Nesciunt voluptas ut praesentium sit temporibus expedita nam. Esse laudantium dolorum doloremque tempora maiores."], ["key", "maryse_runolfsdottir"], ["created_at", "2016-01-27 17:09:18.472844"], ["updated_at", "2016-01-27 17:09:18.472844"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 17:09:18.475064"], ["updated_at", "2016-01-27 17:09:18.475064"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 17:09:18.476670"], ["updated_at", "2016-01-27 17:09:18.476670"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wool Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:09:18.478712"], ["updated_at", "2016-01-27 17:09:18.478712"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Bronze Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:09:18.481079"], ["updated_at", "2016-01-27 17:09:18.481079"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Concrete Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:09:18.483023"], ["updated_at", "2016-01-27 17:09:18.483023"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Cotton Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:09:18.484781"], ["updated_at", "2016-01-27 17:09:18.484781"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (2.6ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (4.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Ahmad Schulist"], ["job_title", "Corporate Communications Executive"], ["greetings", "In et culpa sit dignissimos quidem iste."], ["summary", "Illum occaecati aliquid in. Rerum optio sunt quia itaque impedit maiores sed. Dolor non quo tempora et repellendus velit ut."], ["key", "mr_ahmad_schulist"], ["created_at", "2016-01-27 17:09:38.732089"], ["updated_at", "2016-01-27 17:09:38.732089"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "molestias"], ["key", "molestias"], ["created_at", "2016-01-27 17:09:38.740110"], ["updated_at", "2016-01-27 17:09:38.740110"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-27 17:09:38.742044"], ["updated_at", "2016-01-27 17:09:38.742044"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Steel Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:09:38.756271"], ["updated_at", "2016-01-27 17:09:38.756271"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Copper Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:09:38.758255"], ["updated_at", "2016-01-27 17:09:38.758255"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Cotton Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:09:38.759778"], ["updated_at", "2016-01-27 17:09:38.759778"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Cotton Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:09:38.761305"], ["updated_at", "2016-01-27 17:09:38.761305"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.2ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (172.2ms) Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (206.7ms)  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kirstin Kub DDS"], ["job_title", "International Interactions Executive"], ["greetings", "Doloremque molestiae dolor id dolore illum."], ["summary", "Ut nesciunt voluptatem excepturi aspernatur error odit. Reprehenderit aperiam neque officiis numquam et ex. Esse nihil impedit sit numquam omnis ipsum. Delectus molestias non praesentium."], ["key", "kirstin_kub_dds"], ["created_at", "2016-01-27 17:09:38.993898"], ["updated_at", "2016-01-27 17:09:38.993898"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "facilis"], ["key", "facilis"], ["created_at", "2016-01-27 17:09:39.014610"], ["updated_at", "2016-01-27 17:09:39.014610"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsa"], ["key", "ipsa"], ["created_at", "2016-01-27 17:09:39.016362"], ["updated_at", "2016-01-27 17:09:39.016362"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Silk Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:09:39.018790"], ["updated_at", "2016-01-27 17:09:39.018790"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Leather Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:09:39.021273"], ["updated_at", "2016-01-27 17:09:39.021273"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Iron Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:09:39.023353"], ["updated_at", "2016-01-27 17:09:39.023353"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Leather Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:09:39.025331"], ["updated_at", "2016-01-27 17:09:39.025331"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (2.6ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (4.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Chauncey Schulist"], ["job_title", "District Branding Analyst"], ["greetings", "Magni ut commodi perferendis sequi ut et."], ["summary", "Consectetur quo sapiente. Eos deserunt reiciendis ut. Expedita ut beatae ullam quidem recusandae qui provident. Aperiam delectus vero impedit et. Et commodi est est."], ["key", "chauncey_schulist"], ["created_at", "2016-01-27 17:10:06.017773"], ["updated_at", "2016-01-27 17:10:06.017773"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ratione"], ["key", "ratione"], ["created_at", "2016-01-27 17:10:06.023906"], ["updated_at", "2016-01-27 17:10:06.023906"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "error"], ["key", "error"], ["created_at", "2016-01-27 17:10:06.025556"], ["updated_at", "2016-01-27 17:10:06.025556"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Copper Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:10:06.042176"], ["updated_at", "2016-01-27 17:10:06.042176"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Concrete Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:10:06.044164"], ["updated_at", "2016-01-27 17:10:06.044164"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Copper Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:10:06.045713"], ["updated_at", "2016-01-27 17:10:06.045713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Rubber Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:10:06.047233"], ["updated_at", "2016-01-27 17:10:06.047233"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (192.1ms) Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (227.7ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Minnie Stiedemann"], ["job_title", "Legacy Creative Orchestrator"], ["greetings", "Sint qui quibusdam possimus."], ["summary", "Molestias ipsam at. Dicta amet non perferendis omnis quo enim. Et voluptate impedit autem corrupti dolores ducimus. Ea sunt et. Molestias exercitationem suscipit debitis est adipisci et."], ["key", "minnie_stiedemann"], ["created_at", "2016-01-27 17:10:06.301611"], ["updated_at", "2016-01-27 17:10:06.301611"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "laboriosam"], ["key", "laboriosam"], ["created_at", "2016-01-27 17:10:06.303624"], ["updated_at", "2016-01-27 17:10:06.303624"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "odit"], ["key", "odit"], ["created_at", "2016-01-27 17:10:06.305249"], ["updated_at", "2016-01-27 17:10:06.305249"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Leather Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:10:06.307009"], ["updated_at", "2016-01-27 17:10:06.307009"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Iron Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:10:06.309189"], ["updated_at", "2016-01-27 17:10:06.309189"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Wool Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:10:06.311415"], ["updated_at", "2016-01-27 17:10:06.311415"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Iron Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:10:06.313559"], ["updated_at", "2016-01-27 17:10:06.313559"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)  (0.3ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (6.4ms) Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (11.6ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Charlene Gislason"], ["job_title", "Forward Integration Producer"], ["greetings", "Excepturi fugiat qui perferendis vitae rerum omnis."], ["summary", "Culpa fugiat illo consequatur. Reiciendis officia vel omnis voluptatem. Pariatur neque voluptates. Eum dolores est. Tempore et quod modi quis sunt."], ["key", "charlene_gislason"], ["created_at", "2016-01-27 17:11:31.985576"], ["updated_at", "2016-01-27 17:11:31.985576"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (23.8ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Garett Hamill"], ["job_title", "Customer Security Engineer"], ["greetings", "Qui possimus et adipisci sit eaque illo."], ["summary", "Accusantium qui et nisi velit. Quae incidunt sit. Et nulla et voluptatem harum dolore accusantium enim."], ["key", "garett_hamill"], ["created_at", "2016-01-27 17:11:32.039717"], ["updated_at", "2016-01-27 17:11:32.039717"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.6ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (1.9ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cordell Zboncak"], ["job_title", "Customer Accountability Technician"], ["greetings", "Aut earum quibusdam minima."], ["summary", "Nemo sunt culpa. Qui qui et. Eum modi voluptatem ex sit porro et placeat. Ducimus est quia."], ["key", "cordell_zboncak"], ["created_at", "2016-01-27 17:11:32.047565"], ["updated_at", "2016-01-27 17:11:32.047565"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 17:11:32.052071"], ["updated_at", "2016-01-27 17:11:32.052071"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "doloribus"], ["key", "doloribus"], ["created_at", "2016-01-27 17:11:32.053901"], ["updated_at", "2016-01-27 17:11:32.053901"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wool Computer"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:11:32.066755"], ["updated_at", "2016-01-27 17:11:32.066755"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wooden Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:11:32.068755"], ["updated_at", "2016-01-27 17:11:32.068755"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Plastic Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:11:32.070661"], ["updated_at", "2016-01-27 17:11:32.070661"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:11:32.072282"], ["updated_at", "2016-01-27 17:11:32.072282"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.6ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (197.7ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (210.4ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Lew Ledner"], ["job_title", "Forward Functionality Analyst"], ["greetings", "Eum molestias aut a iusto qui qui."], ["summary", "Facilis laboriosam rerum fugit veritatis ad. Consequuntur autem accusantium rerum tenetur facilis molestiae tempora. Consequatur sed qui aspernatur. Minus eveniet aliquam."], ["key", "mrs_lew_ledner"], ["created_at", "2016-01-27 17:11:41.484189"], ["updated_at", "2016-01-27 17:11:41.484189"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:11:41.502537"], ["updated_at", "2016-01-27 17:11:41.502537"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Brenna O'Kon II"], ["job_title", "Principal Accountability Executive"], ["greetings", "Sit et voluptatum qui."], ["summary", "Cum libero rerum fugit eligendi et velit. Error dolores quidem. Velit saepe accusantium illo in dolores. Odio in libero molestiae incidunt repudiandae iure pariatur."], ["key", "brenna_o_kon_ii"], ["created_at", "2016-01-27 17:11:41.507857"], ["updated_at", "2016-01-27 17:11:41.507857"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:11:41.509602"], ["updated_at", "2016-01-27 17:11:41.509602"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Maya Kris"], ["job_title", "Regional Identity Orchestrator"], ["greetings", "Necessitatibus dolorem ut et et."], ["summary", "Cupiditate repellendus et voluptate. Dolorem aut et non aut ut. Nostrum sit recusandae quas labore."], ["key", "maya_kris"], ["created_at", "2016-01-27 17:11:41.512422"], ["updated_at", "2016-01-27 17:11:41.512422"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:11:41.513751"], ["updated_at", "2016-01-27 17:11:41.513751"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Carissa Berge"], ["job_title", "Corporate Communications Producer"], ["greetings", "Ut beatae commodi culpa veniam magnam."], ["summary", "Velit ut necessitatibus ullam omnis voluptate sit. Nam ut aut libero est. Porro eligendi enim dolorum nihil ut sint."], ["key", "carissa_berge"], ["created_at", "2016-01-27 17:11:41.520056"], ["updated_at", "2016-01-27 17:11:41.520056"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:11:41.521851"], ["updated_at", "2016-01-27 17:11:41.521851"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Daphne Lakin"], ["job_title", "National Usability Manager"], ["greetings", "Blanditiis dicta voluptatem nostrum aspernatur similique."], ["summary", "Quia qui adipisci quas aperiam. Quasi dolore consequatur. Est eum fugit rerum aliquam asperiores magni cupiditate. Aliquam dolore dolor inventore aspernatur velit qui. Aliquam eveniet qui velit deleniti veritatis in."], ["key", "daphne_lakin"], ["created_at", "2016-01-27 17:11:41.525223"], ["updated_at", "2016-01-27 17:11:41.525223"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:11:41.527263"], ["updated_at", "2016-01-27 17:11:41.527263"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Madie Gusikowski III"], ["job_title", "Corporate Factors Engineer"], ["greetings", "Quibusdam eum omnis hic esse voluptas cumque ut rerum."], ["summary", "Aut totam occaecati. Voluptatibus et voluptates quae quasi. Doloribus aspernatur saepe."], ["key", "madie_gusikowski_iii"], ["created_at", "2016-01-27 17:11:41.531195"], ["updated_at", "2016-01-27 17:11:41.531195"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:11:41.533009"], ["updated_at", "2016-01-27 17:11:41.533009"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Lenna Mayer"], ["job_title", "Product Communications Representative"], ["greetings", "Omnis modi debitis omnis nam recusandae nostrum."], ["summary", "Quam rem blanditiis laborum rerum dolores. Dolorem qui consequatur sapiente in consequatur. Praesentium quis nostrum. Assumenda quibusdam saepe praesentium beatae ducimus. Enim ea modi eveniet est corporis incidunt qui."], ["key", "mrs_lenna_mayer"], ["created_at", "2016-01-27 17:11:41.547125"], ["updated_at", "2016-01-27 17:11:41.547125"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wooden Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:11:41.554760"], ["updated_at", "2016-01-27 17:11:41.554760"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Silk Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:11:41.556875"], ["updated_at", "2016-01-27 17:11:41.556875"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Watch"], ["site_id", 1], ["created_at", "2016-01-27 17:11:41.558378"], ["updated_at", "2016-01-27 17:11:41.558378"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Leather Bottle"], ["site_id", 1], ["created_at", "2016-01-27 17:11:41.560293"], ["updated_at", "2016-01-27 17:11:41.560293"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (24.0ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (191.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (264.1ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Noemie Ward"], ["job_title", "National Brand Engineer"], ["greetings", "Quidem omnis aliquam fugit."], ["summary", "Laudantium unde corporis quas ex dolores vel enim. Non atque hic dicta dolorem minus. Quia ducimus odio voluptas et sequi exercitationem. Quo culpa sed."], ["key", "noemie_ward"], ["created_at", "2016-01-27 17:11:41.846755"], ["updated_at", "2016-01-27 17:11:41.846755"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Plastic Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:11:41.849303"], ["updated_at", "2016-01-27 17:11:41.849303"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Steel Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:11:41.851369"], ["updated_at", "2016-01-27 17:11:41.851369"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Plastic Bottle"], ["site_id", 1], ["created_at", "2016-01-27 17:11:41.853503"], ["updated_at", "2016-01-27 17:11:41.853503"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Silk Plate"], ["site_id", 1], ["created_at", "2016-01-27 17:11:41.855119"], ["updated_at", "2016-01-27 17:11:41.855119"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (8.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Otho Auer"], ["job_title", "International Operations Consultant"], ["greetings", "Id qui enim culpa ut eos illo."], ["summary", "Libero asperiores ad provident. Beatae voluptas qui dolorum molestiae neque aperiam soluta. Perspiciatis exercitationem quia quibusdam corrupti tenetur. Vero quo quisquam quis aperiam nesciunt."], ["key", "otho_auer"], ["created_at", "2016-01-27 17:11:41.869871"], ["updated_at", "2016-01-27 17:11:41.869871"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 17:11:41.874103"], ["updated_at", "2016-01-27 17:11:41.874103"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-27 17:11:41.875798"], ["updated_at", "2016-01-27 17:11:41.875798"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Granite Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:11:41.878660"], ["updated_at", "2016-01-27 17:11:41.878660"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Iron Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:11:41.881170"], ["updated_at", "2016-01-27 17:11:41.881170"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Granite Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:11:41.882961"], ["updated_at", "2016-01-27 17:11:41.882961"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Steel Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:11:41.885066"], ["updated_at", "2016-01-27 17:11:41.885066"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Izaiah Ziemann"], ["job_title", "Dynamic Marketing Assistant"], ["greetings", "Quia veritatis earum eum voluptatum."], ["summary", "Quas tempora occaecati. Voluptatibus pariatur quas voluptates consectetur et ducimus. Ipsa recusandae eius dicta earum. Qui veniam atque voluptatum."], ["key", "mrs_izaiah_ziemann"], ["created_at", "2016-01-27 17:11:41.906050"], ["updated_at", "2016-01-27 17:11:41.906050"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "assumenda"], ["key", "assumenda"], ["created_at", "2016-01-27 17:11:41.909576"], ["updated_at", "2016-01-27 17:11:41.909576"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 17:11:41.912720"], ["updated_at", "2016-01-27 17:11:41.912720"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Concrete Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:11:41.917279"], ["updated_at", "2016-01-27 17:11:41.917279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Aluminum Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:11:41.920961"], ["updated_at", "2016-01-27 17:11:41.920961"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Copper Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:11:41.923487"], ["updated_at", "2016-01-27 17:11:41.923487"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Copper Car"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:11:41.926926"], ["updated_at", "2016-01-27 17:11:41.926926"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (13.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.4ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (28.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jade Grady"], ["job_title", "Direct Creative Facilitator"], ["greetings", "Quod cumque officia vel."], ["summary", "Molestiae qui neque. Omnis magni suscipit. Ut repellat consequatur est saepe ut."], ["key", "jade_grady"], ["created_at", "2016-01-27 17:11:41.966326"], ["updated_at", "2016-01-27 17:11:41.966326"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (12.6ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Caleb Heidenreich"], ["job_title", "Human Program Architect"], ["greetings", "Praesentium aut omnis ea."], ["summary", "Non aut eum consectetur. Et minus occaecati voluptatem qui pariatur. Voluptatem quasi dolorem delectus. Voluptatem qui qui ullam aliquam totam. Est ea magnam ipsa sed."], ["key", "caleb_heidenreich"], ["created_at", "2016-01-27 17:11:41.998210"], ["updated_at", "2016-01-27 17:11:41.998210"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.8ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Shany Tromp"], ["job_title", "Human Integration Associate"], ["greetings", "Facilis tempora et voluptatum."], ["summary", "Aliquam placeat ipsa sit delectus. Fugit sit quis autem quisquam animi quasi rem. Omnis eum sit alias saepe exercitationem. Maxime reprehenderit eos tempore nihil nesciunt aut."], ["key", "shany_tromp"], ["created_at", "2016-01-27 17:11:42.009296"], ["updated_at", "2016-01-27 17:11:42.009296"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consectetur"], ["key", "consectetur"], ["created_at", "2016-01-27 17:11:42.012743"], ["updated_at", "2016-01-27 17:11:42.012743"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-27 17:11:42.014680"], ["updated_at", "2016-01-27 17:11:42.014680"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Rubber Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:11:42.016990"], ["updated_at", "2016-01-27 17:11:42.016990"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Linen Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:11:42.021050"], ["updated_at", "2016-01-27 17:11:42.021050"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Leather Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:11:42.023911"], ["updated_at", "2016-01-27 17:11:42.023911"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Steel Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:11:42.027588"], ["updated_at", "2016-01-27 17:11:42.027588"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.4ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.5ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (21.4ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mafalda Anderson"], ["job_title", "Dynamic Tactics Liaison"], ["greetings", "Numquam quidem quibusdam optio."], ["summary", "Velit qui dolores adipisci in animi possimus laudantium. Esse molestiae eos aut et ipsa et voluptatibus. Et sed ipsum repellendus. Natus molestias est placeat aut quaerat quae."], ["key", "mafalda_anderson"], ["created_at", "2016-01-27 17:24:31.180838"], ["updated_at", "2016-01-27 17:24:31.180838"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:24:31.198290"], ["updated_at", "2016-01-27 17:24:31.198290"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Mariela Kohler"], ["job_title", "Senior Implementation Specialist"], ["greetings", "Ad architecto modi mollitia error ab eum quo amet."], ["summary", "Eaque consectetur reprehenderit aut et commodi. Debitis qui quo qui voluptas. Perspiciatis maxime qui."], ["key", "mr_mariela_kohler"], ["created_at", "2016-01-27 17:24:31.204228"], ["updated_at", "2016-01-27 17:24:31.204228"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:24:31.206483"], ["updated_at", "2016-01-27 17:24:31.206483"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Cleta McLaughlin"], ["job_title", "Investor Brand Analyst"], ["greetings", "Harum ut eum ut suscipit deserunt sunt."], ["summary", "Soluta numquam ducimus deleniti reiciendis autem. Alias amet deleniti. Qui occaecati sed quo et."], ["key", "dr_cleta_mclaughlin"], ["created_at", "2016-01-27 17:24:31.209109"], ["updated_at", "2016-01-27 17:24:31.209109"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:24:31.210690"], ["updated_at", "2016-01-27 17:24:31.210690"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Caden Bruen"], ["job_title", "Human Paradigm Representative"], ["greetings", "Consequatur quaerat voluptas error dolorem dolore tenetur quia sed."], ["summary", "Ut nesciunt rerum nisi occaecati cumque. Veniam qui libero vel necessitatibus. Quae optio ut consequatur eveniet."], ["key", "caden_bruen"], ["created_at", "2016-01-27 17:24:31.218657"], ["updated_at", "2016-01-27 17:24:31.218657"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:24:31.221942"], ["updated_at", "2016-01-27 17:24:31.221942"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Athena Grant III"], ["job_title", "Future Mobility Orchestrator"], ["greetings", "Occaecati et excepturi aut nulla."], ["summary", "Dolore qui voluptates. Tempora fugiat iusto voluptas ratione harum assumenda. Id sint consequatur et sint soluta. Facilis minus voluptas praesentium rem. Itaque quae eligendi excepturi rerum minus unde."], ["key", "athena_grant_iii"], ["created_at", "2016-01-27 17:24:31.226393"], ["updated_at", "2016-01-27 17:24:31.226393"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:24:31.228412"], ["updated_at", "2016-01-27 17:24:31.228412"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Charlene Hagenes"], ["job_title", "Direct Assurance Planner"], ["greetings", "Aspernatur aut explicabo ipsum occaecati."], ["summary", "Laborum velit animi. Fugiat deleniti sint ut doloremque. Voluptatem asperiores nemo."], ["key", "charlene_hagenes"], ["created_at", "2016-01-27 17:24:31.232056"], ["updated_at", "2016-01-27 17:24:31.232056"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:24:31.234221"], ["updated_at", "2016-01-27 17:24:31.234221"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Christian Breitenberg"], ["job_title", "Forward Communications Consultant"], ["greetings", "Qui minima est tempora et dolor suscipit ipsum est."], ["summary", "Molestiae eos soluta sit quia ut cupiditate. Maiores voluptas numquam sunt sed iusto excepturi. Cum et sit aperiam in eum. Velit dolore occaecati."], ["key", "christian_breitenberg"], ["created_at", "2016-01-27 17:24:31.238950"], ["updated_at", "2016-01-27 17:24:31.238950"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "occaecati"], ["key", "occaecati"], ["created_at", "2016-01-27 17:24:31.243433"], ["updated_at", "2016-01-27 17:24:31.243433"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "reprehenderit"], ["key", "reprehenderit"], ["created_at", "2016-01-27 17:24:31.245470"], ["updated_at", "2016-01-27 17:24:31.245470"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Leather Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:24:31.252630"], ["updated_at", "2016-01-27 17:24:31.252630"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Rubber Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:24:31.255991"], ["updated_at", "2016-01-27 17:24:31.255991"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Iron Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:24:31.257646"], ["updated_at", "2016-01-27 17:24:31.257646"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Steel Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:24:31.259346"], ["updated_at", "2016-01-27 17:24:31.259346"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Madalyn Keebler"], ["job_title", "Chief Interactions Executive"], ["greetings", "Optio quae laboriosam ut ut est."], ["summary", "Doloribus quis rem libero. Nisi sed ab velit veritatis. Sunt quae eos repellendus facilis."], ["key", "madalyn_keebler"], ["created_at", "2016-01-27 17:24:31.282931"], ["updated_at", "2016-01-27 17:24:31.282931"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Aluminum Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:24:31.285154"], ["updated_at", "2016-01-27 17:24:31.285154"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Iron Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:24:31.288713"], ["updated_at", "2016-01-27 17:24:31.288713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Paper Gloves"], ["site_id", 1], ["created_at", "2016-01-27 17:24:31.290361"], ["updated_at", "2016-01-27 17:24:31.290361"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Copper Shoes"], ["site_id", 1], ["created_at", "2016-01-27 17:24:31.291754"], ["updated_at", "2016-01-27 17:24:31.291754"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (11.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (25.2ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (237.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (317.4ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aidan Grant"], ["job_title", "Forward Division Engineer"], ["greetings", "Quos possimus ea doloremque sit sapiente quae temporibus sint."], ["summary", "Dolores consequatur voluptate qui ipsam totam. Quod corporis esse. Numquam nemo quod aut."], ["key", "aidan_grant"], ["created_at", "2016-01-27 17:24:31.636614"], ["updated_at", "2016-01-27 17:24:31.636614"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Marble Shirt"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:24:31.643571"], ["updated_at", "2016-01-27 17:24:31.643571"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Steel Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:24:31.647595"], ["updated_at", "2016-01-27 17:24:31.647595"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Marble Shirt"], ["site_id", 1], ["created_at", "2016-01-27 17:24:31.651602"], ["updated_at", "2016-01-27 17:24:31.651602"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Granite Bench"], ["site_id", 1], ["created_at", "2016-01-27 17:24:31.655400"], ["updated_at", "2016-01-27 17:24:31.655400"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (8.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (17.0ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Jakob Rolfson"], ["job_title", "National Tactics Supervisor"], ["greetings", "Modi atque quaerat et eum autem a officia."], ["summary", "Iusto hic delectus. Qui qui facilis. Soluta beatae qui magnam provident quisquam. Praesentium et alias voluptatibus nihil dolores ducimus. Non tenetur autem."], ["key", "mr_jakob_rolfson"], ["created_at", "2016-01-27 17:24:31.681155"], ["updated_at", "2016-01-27 17:24:31.681155"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 17:24:31.683182"], ["updated_at", "2016-01-27 17:24:31.683182"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "accusamus"], ["key", "accusamus"], ["created_at", "2016-01-27 17:24:31.684973"], ["updated_at", "2016-01-27 17:24:31.684973"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Bronze Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:24:31.688694"], ["updated_at", "2016-01-27 17:24:31.688694"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Plastic Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:24:31.690997"], ["updated_at", "2016-01-27 17:24:31.690997"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Rubber Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:24:31.693130"], ["updated_at", "2016-01-27 17:24:31.693130"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Leather Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:24:31.697174"], ["updated_at", "2016-01-27 17:24:31.697174"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.8ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (30.7ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Khalil Kuvalis"], ["job_title", "District Factors Supervisor"], ["greetings", "Molestiae ut deserunt rerum nihil aliquid sapiente sint magni."], ["summary", "Molestias cum exercitationem magnam ab sed eaque eum. Ea qui nihil voluptatem. Quidem impedit earum facere."], ["key", "khalil_kuvalis"], ["created_at", "2016-01-27 17:24:31.738135"], ["updated_at", "2016-01-27 17:24:31.738135"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "delectus"], ["key", "delectus"], ["created_at", "2016-01-27 17:24:31.740859"], ["updated_at", "2016-01-27 17:24:31.740859"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quaerat"], ["key", "quaerat"], ["created_at", "2016-01-27 17:24:31.743181"], ["updated_at", "2016-01-27 17:24:31.743181"]]  (0.4ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Leather Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:24:31.745958"], ["updated_at", "2016-01-27 17:24:31.745958"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Copper Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:24:31.748891"], ["updated_at", "2016-01-27 17:24:31.748891"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Concrete Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:24:31.751915"], ["updated_at", "2016-01-27 17:24:31.751915"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wool Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:24:31.754333"], ["updated_at", "2016-01-27 17:24:31.754333"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.4ms)  (0.3ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (22.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Emmy Dicki"], ["job_title", "Senior Applications Planner"], ["greetings", "Cupiditate est pariatur facere nulla."], ["summary", "Aut expedita maxime cupiditate unde error. Asperiores illum id non perspiciatis accusamus quae. Quidem aut est similique aliquam."], ["key", "emmy_dicki"], ["created_at", "2016-01-27 17:24:31.786538"], ["updated_at", "2016-01-27 17:24:31.786538"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (14.4ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Krista Quitzon"], ["job_title", "Forward Security Agent"], ["greetings", "Nesciunt et molestiae tempora."], ["summary", "Magnam voluptatem optio voluptate natus qui qui. Delectus aspernatur impedit tenetur. Beatae voluptate qui quidem."], ["key", "krista_quitzon"], ["created_at", "2016-01-27 17:24:31.821964"], ["updated_at", "2016-01-27 17:24:31.821964"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.0ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Shaniya Will"], ["job_title", "Product Markets Supervisor"], ["greetings", "Et et repellendus et."], ["summary", "Voluptatibus blanditiis rerum. Aut doloremque ducimus sed tempora praesentium consequatur necessitatibus. Mollitia sequi illum et architecto. Asperiores rerum sed vero dolor eaque voluptatem."], ["key", "shaniya_will"], ["created_at", "2016-01-27 17:24:31.832939"], ["updated_at", "2016-01-27 17:24:31.832939"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "velit"], ["key", "velit"], ["created_at", "2016-01-27 17:24:31.837055"], ["updated_at", "2016-01-27 17:24:31.837055"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "doloremque"], ["key", "doloremque"], ["created_at", "2016-01-27 17:24:31.841829"], ["updated_at", "2016-01-27 17:24:31.841829"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Wool Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:24:31.844980"], ["updated_at", "2016-01-27 17:24:31.844980"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:24:31.847262"], ["updated_at", "2016-01-27 17:24:31.847262"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Plastic Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:24:31.850487"], ["updated_at", "2016-01-27 17:24:31.850487"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Cotton Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:24:31.853775"], ["updated_at", "2016-01-27 17:24:31.853775"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.3ms) Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (27.2ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Joseph Schuster"], ["job_title", "Principal Group Assistant"], ["greetings", "Cum assumenda blanditiis alias aspernatur quaerat in accusamus a."], ["summary", "Ea aut repellat magni explicabo vel. Ipsam incidunt possimus in. Et eligendi sit. Non ut voluptas ut excepturi quo. Ducimus cumque rerum cum delectus et dolor nemo."], ["key", "joseph_schuster"], ["created_at", "2016-01-27 17:25:07.458162"], ["updated_at", "2016-01-27 17:25:07.458162"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:25:07.474269"], ["updated_at", "2016-01-27 17:25:07.474269"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Melba Torphy"], ["job_title", "Chief Research Associate"], ["greetings", "Et vero sunt ex repudiandae nemo."], ["summary", "Distinctio quasi consequatur consequatur veniam quis quidem consequatur. Recusandae earum id ut et inventore animi. Consequatur in ut quaerat. Ut repudiandae ut."], ["key", "melba_torphy"], ["created_at", "2016-01-27 17:25:07.480091"], ["updated_at", "2016-01-27 17:25:07.480091"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:25:07.482004"], ["updated_at", "2016-01-27 17:25:07.482004"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Salvador Smitham"], ["job_title", "Direct Brand Facilitator"], ["greetings", "Porro nihil molestiae accusamus expedita."], ["summary", "Minus ex totam ratione iusto. Eligendi autem illo incidunt. Explicabo dolores fugiat consequatur. Qui minus maxime nulla deserunt voluptatem."], ["key", "salvador_smitham"], ["created_at", "2016-01-27 17:25:07.484710"], ["updated_at", "2016-01-27 17:25:07.484710"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:25:07.486718"], ["updated_at", "2016-01-27 17:25:07.486718"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Della Konopelski"], ["job_title", "Principal Response Supervisor"], ["greetings", "Praesentium quibusdam non harum ipsam."], ["summary", "Commodi non qui recusandae aspernatur sapiente et. Quod et autem. Voluptatem repudiandae aut quod totam omnis. Ut beatae voluptatem corrupti qui sit ab."], ["key", "della_konopelski"], ["created_at", "2016-01-27 17:25:07.492916"], ["updated_at", "2016-01-27 17:25:07.492916"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:25:07.494704"], ["updated_at", "2016-01-27 17:25:07.494704"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Aubrey Ernser"], ["job_title", "Direct Identity Manager"], ["greetings", "Et laboriosam qui neque voluptatibus vitae velit aut facilis."], ["summary", "Perferendis aut quos vel. Et illum exercitationem totam. Quas ut quis accusantium unde ab ut. Quae esse possimus voluptas est. Et et ad eum totam sunt dignissimos."], ["key", "miss_aubrey_ernser"], ["created_at", "2016-01-27 17:25:07.498574"], ["updated_at", "2016-01-27 17:25:07.498574"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:25:07.500753"], ["updated_at", "2016-01-27 17:25:07.500753"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Flavio Johnston"], ["job_title", "Lead Group Architect"], ["greetings", "Consectetur aspernatur vel et alias."], ["summary", "Nemo explicabo ab nostrum delectus est officiis. Rerum nemo sit dicta qui. Quis ipsa sunt sunt. Aut vel sint consequatur mollitia enim magni."], ["key", "flavio_johnston"], ["created_at", "2016-01-27 17:25:07.504486"], ["updated_at", "2016-01-27 17:25:07.504486"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:25:07.506637"], ["updated_at", "2016-01-27 17:25:07.506637"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Monte Mitchell"], ["job_title", "Investor Accountability Developer"], ["greetings", "Autem accusantium amet esse."], ["summary", "Aspernatur quaerat quidem fugiat qui. Eos velit voluptas modi reprehenderit qui. Et fugiat adipisci delectus corporis. Harum fugiat doloremque. Distinctio quas officiis vel fuga suscipit."], ["key", "monte_mitchell"], ["created_at", "2016-01-27 17:25:07.510617"], ["updated_at", "2016-01-27 17:25:07.510617"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 17:25:07.515915"], ["updated_at", "2016-01-27 17:25:07.515915"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tenetur"], ["key", "tenetur"], ["created_at", "2016-01-27 17:25:07.517906"], ["updated_at", "2016-01-27 17:25:07.517906"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Cotton Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:25:07.526079"], ["updated_at", "2016-01-27 17:25:07.526079"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Marble Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:25:07.528301"], ["updated_at", "2016-01-27 17:25:07.528301"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wool Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:25:07.530443"], ["updated_at", "2016-01-27 17:25:07.530443"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Leather Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:25:07.532253"], ["updated_at", "2016-01-27 17:25:07.532253"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Etha Wilkinson"], ["job_title", "Senior Usability Facilitator"], ["greetings", "Voluptatibus voluptatum aliquam quod aspernatur."], ["summary", "Pariatur sunt praesentium et ut architecto mollitia. Et ipsum dolorum. Omnis omnis dolor error sequi distinctio non. Et animi id occaecati in."], ["key", "etha_wilkinson"], ["created_at", "2016-01-27 17:25:07.554113"], ["updated_at", "2016-01-27 17:25:07.554113"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wooden Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:25:07.556421"], ["updated_at", "2016-01-27 17:25:07.556421"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Cotton Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:25:07.558767"], ["updated_at", "2016-01-27 17:25:07.558767"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Aluminum Shoes"], ["site_id", 1], ["created_at", "2016-01-27 17:25:07.560331"], ["updated_at", "2016-01-27 17:25:07.560331"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Cotton Bench"], ["site_id", 1], ["created_at", "2016-01-27 17:25:07.561808"], ["updated_at", "2016-01-27 17:25:07.561808"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (26.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (232.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (314.6ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lucy Rohan"], ["job_title", "Forward Web Director"], ["greetings", "Provident et praesentium ut aut dolores."], ["summary", "Numquam enim delectus consequatur reprehenderit in sed et. Iure voluptas aut. Corrupti ut doloremque. Ut nostrum nesciunt vel fuga."], ["key", "lucy_rohan"], ["created_at", "2016-01-27 17:25:07.905613"], ["updated_at", "2016-01-27 17:25:07.905613"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Granite Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:25:07.910244"], ["updated_at", "2016-01-27 17:25:07.910244"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Linen Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:25:07.914436"], ["updated_at", "2016-01-27 17:25:07.914436"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Bronze Car"], ["site_id", 1], ["created_at", "2016-01-27 17:25:07.918738"], ["updated_at", "2016-01-27 17:25:07.918738"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Copper Pants"], ["site_id", 1], ["created_at", "2016-01-27 17:25:07.922607"], ["updated_at", "2016-01-27 17:25:07.922607"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.6ms) Portfolio::SiteItemCategory Load (0.5ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (23.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ayana Schmidt"], ["job_title", "Lead Usability Officer"], ["greetings", "Officiis deleniti corporis laborum fugit consequuntur quidem corrupti."], ["summary", "Odit reiciendis quasi esse. Necessitatibus qui magni ullam consequatur totam amet fuga. Dignissimos culpa nobis. Labore sit ea."], ["key", "ayana_schmidt"], ["created_at", "2016-01-27 17:25:07.959322"], ["updated_at", "2016-01-27 17:25:07.959322"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 17:25:07.961650"], ["updated_at", "2016-01-27 17:25:07.961650"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolorem"], ["key", "dolorem"], ["created_at", "2016-01-27 17:25:07.964077"], ["updated_at", "2016-01-27 17:25:07.964077"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Silk Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:25:07.966712"], ["updated_at", "2016-01-27 17:25:07.966712"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Rubber Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:25:07.969111"], ["updated_at", "2016-01-27 17:25:07.969111"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Concrete Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:25:07.971216"], ["updated_at", "2016-01-27 17:25:07.971216"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Concrete Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:25:07.973582"], ["updated_at", "2016-01-27 17:25:07.973582"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (10.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (32.0ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Desiree Vandervort"], ["job_title", "Direct Mobility Architect"], ["greetings", "Rerum sequi odit dolor alias."], ["summary", "Nihil maiores eligendi sint. Eius soluta aut deleniti. Voluptatibus distinctio earum. Qui deserunt nobis dolor minima voluptatem doloribus."], ["key", "desiree_vandervort"], ["created_at", "2016-01-27 17:25:08.021132"], ["updated_at", "2016-01-27 17:25:08.021132"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iste"], ["key", "iste"], ["created_at", "2016-01-27 17:25:08.023799"], ["updated_at", "2016-01-27 17:25:08.023799"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cumque"], ["key", "cumque"], ["created_at", "2016-01-27 17:25:08.026691"], ["updated_at", "2016-01-27 17:25:08.026691"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Iron Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:25:08.029555"], ["updated_at", "2016-01-27 17:25:08.029555"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Concrete Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:25:08.032815"], ["updated_at", "2016-01-27 17:25:08.032815"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Paper Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:25:08.036033"], ["updated_at", "2016-01-27 17:25:08.036033"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wool Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:25:08.038873"], ["updated_at", "2016-01-27 17:25:08.038873"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (1.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (18.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Wilhelm O'Keefe"], ["job_title", "Regional Applications Liaison"], ["greetings", "Et sequi perspiciatis iusto consequuntur quia."], ["summary", "Voluptate suscipit velit voluptatem nobis eius. Repellat ipsa non nam. Culpa minus accusamus rem necessitatibus soluta. Consequatur blanditiis in eveniet et."], ["key", "wilhelm_o_keefe"], ["created_at", "2016-01-27 17:25:08.066000"], ["updated_at", "2016-01-27 17:25:08.066000"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.9ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (16.4ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Raina Batz DDS"], ["job_title", "Forward Directives Developer"], ["greetings", "Voluptatem ad ea perferendis nam inventore voluptatum qui placeat."], ["summary", "Nam qui iure quis ex laborum qui minima. Eius enim quibusdam corrupti voluptatem excepturi. Perspiciatis voluptatem sint consequatur et corrupti et."], ["key", "raina_batz_dds"], ["created_at", "2016-01-27 17:25:08.104585"], ["updated_at", "2016-01-27 17:25:08.104585"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.9ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Janiya Barton"], ["job_title", "Senior Implementation Strategist"], ["greetings", "Saepe ut amet non illo est qui enim."], ["summary", "Dolores adipisci fuga rem. Debitis ducimus sed perferendis aut quasi optio id. Tempora corporis temporibus non. Maiores est ducimus sed in et. Porro dolor veniam maiores tempore et voluptatem voluptatum."], ["key", "janiya_barton"], ["created_at", "2016-01-27 17:25:08.116249"], ["updated_at", "2016-01-27 17:25:08.116249"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "officiis"], ["key", "officiis"], ["created_at", "2016-01-27 17:25:08.119035"], ["updated_at", "2016-01-27 17:25:08.119035"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quam"], ["key", "quam"], ["created_at", "2016-01-27 17:25:08.122193"], ["updated_at", "2016-01-27 17:25:08.122193"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Plastic Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:25:08.128077"], ["updated_at", "2016-01-27 17:25:08.128077"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Silk Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:25:08.131099"], ["updated_at", "2016-01-27 17:25:08.131099"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Plastic Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:25:08.134177"], ["updated_at", "2016-01-27 17:25:08.134177"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Plastic Car"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:25:08.138980"], ["updated_at", "2016-01-27 17:25:08.138980"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.9ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.0ms) Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (28.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Peter Christiansen"], ["job_title", "Dynamic Directives Producer"], ["greetings", "Est maxime minima nihil sit culpa."], ["summary", "Nulla alias excepturi explicabo. Enim praesentium doloremque autem sint. Voluptate dignissimos in vero quas expedita deserunt."], ["key", "peter_christiansen"], ["created_at", "2016-01-27 17:26:24.755752"], ["updated_at", "2016-01-27 17:26:24.755752"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:26:24.773103"], ["updated_at", "2016-01-27 17:26:24.773103"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Eugene Schuppe"], ["job_title", "Corporate Accounts Strategist"], ["greetings", "Deserunt ullam sequi commodi omnis sint."], ["summary", "Inventore a quia. Omnis alias minima sint. Accusamus perspiciatis excepturi ad."], ["key", "eugene_schuppe"], ["created_at", "2016-01-27 17:26:24.778337"], ["updated_at", "2016-01-27 17:26:24.778337"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:26:24.780198"], ["updated_at", "2016-01-27 17:26:24.780198"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dillon Boehm"], ["job_title", "Legacy Data Engineer"], ["greetings", "Sunt quasi odio illo."], ["summary", "Itaque blanditiis quas animi occaecati. Illum quia blanditiis voluptatum quos. Velit maxime in ratione molestiae."], ["key", "dillon_boehm"], ["created_at", "2016-01-27 17:26:24.782583"], ["updated_at", "2016-01-27 17:26:24.782583"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:26:24.784113"], ["updated_at", "2016-01-27 17:26:24.784113"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Terence Moen PhD"], ["job_title", "Global Integration Supervisor"], ["greetings", "Cumque ducimus et et odit totam reiciendis et dicta."], ["summary", "Minus consequatur ipsa est nesciunt ratione veniam. Occaecati autem nulla. Veritatis quibusdam sit voluptatem exercitationem blanditiis tempore. Pariatur quae minima inventore id. Et harum dolor explicabo aliquid odio."], ["key", "terence_moen_phd"], ["created_at", "2016-01-27 17:26:24.791091"], ["updated_at", "2016-01-27 17:26:24.791091"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:26:24.793253"], ["updated_at", "2016-01-27 17:26:24.793253"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Carolanne Fisher"], ["job_title", "Central Research Producer"], ["greetings", "Pariatur suscipit sed unde libero in sapiente atque provident."], ["summary", "Id eos tenetur corporis. Laudantium consequatur vero est architecto. Sit minima autem iste suscipit. Veritatis nam necessitatibus non quo nesciunt et."], ["key", "mr_carolanne_fisher"], ["created_at", "2016-01-27 17:26:24.797660"], ["updated_at", "2016-01-27 17:26:24.797660"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:26:24.800544"], ["updated_at", "2016-01-27 17:26:24.800544"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Wendy Daniel"], ["job_title", "International Configuration Specialist"], ["greetings", "Aut dolore quo suscipit fugit non in reiciendis debitis."], ["summary", "Amet qui aut. Tempore tenetur doloribus ipsa nesciunt quia iure. Recusandae nemo amet sunt quibusdam voluptatem. Magnam assumenda illo."], ["key", "ms_wendy_daniel"], ["created_at", "2016-01-27 17:26:24.806505"], ["updated_at", "2016-01-27 17:26:24.806505"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:26:24.808987"], ["updated_at", "2016-01-27 17:26:24.808987"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Stella Bailey"], ["job_title", "Investor Creative Analyst"], ["greetings", "Tenetur eos aut vel ea velit quis quibusdam rerum."], ["summary", "Officia cumque qui. Ad libero ut repellat ab voluptate a ullam. Est sed voluptatem esse repellendus."], ["key", "stella_bailey"], ["created_at", "2016-01-27 17:26:24.813572"], ["updated_at", "2016-01-27 17:26:24.813572"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "neque"], ["key", "neque"], ["created_at", "2016-01-27 17:26:24.818602"], ["updated_at", "2016-01-27 17:26:24.818602"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sed"], ["key", "sed"], ["created_at", "2016-01-27 17:26:24.822782"], ["updated_at", "2016-01-27 17:26:24.822782"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wooden Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:26:24.829927"], ["updated_at", "2016-01-27 17:26:24.829927"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Marble Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:26:24.831947"], ["updated_at", "2016-01-27 17:26:24.831947"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Granite Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:26:24.833711"], ["updated_at", "2016-01-27 17:26:24.833711"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Paper Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:26:24.835551"], ["updated_at", "2016-01-27 17:26:24.835551"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Verona Collins"], ["job_title", "Direct Group Engineer"], ["greetings", "Rerum unde praesentium iusto neque adipisci eius voluptatem."], ["summary", "Laborum voluptatem iusto deleniti eum earum minus quia. Est laboriosam dolore sit explicabo autem. Velit vel et. Sapiente nulla corrupti maiores eos ipsa odio et."], ["key", "verona_collins"], ["created_at", "2016-01-27 17:26:24.860918"], ["updated_at", "2016-01-27 17:26:24.860918"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Silk Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:26:24.863194"], ["updated_at", "2016-01-27 17:26:24.863194"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Steel Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:26:24.865753"], ["updated_at", "2016-01-27 17:26:24.865753"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Rubber Clock"], ["site_id", 1], ["created_at", "2016-01-27 17:26:24.867242"], ["updated_at", "2016-01-27 17:26:24.867242"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Aluminum Pants"], ["site_id", 1], ["created_at", "2016-01-27 17:26:24.869938"], ["updated_at", "2016-01-27 17:26:24.869938"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (24.0ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (233.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (310.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Clarissa Gislason"], ["job_title", "Corporate Operations Consultant"], ["greetings", "Cumque at labore et ratione."], ["summary", "Et aut nihil nemo et. Doloribus omnis autem quasi voluptas. Officiis quasi ipsum amet eveniet vel."], ["key", "miss_clarissa_gislason"], ["created_at", "2016-01-27 17:26:25.207356"], ["updated_at", "2016-01-27 17:26:25.207356"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wool Hat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:26:25.211832"], ["updated_at", "2016-01-27 17:26:25.211832"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Rubber Bench"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:26:25.216045"], ["updated_at", "2016-01-27 17:26:25.216045"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Linen Knife"], ["site_id", 1], ["created_at", "2016-01-27 17:26:25.219972"], ["updated_at", "2016-01-27 17:26:25.219972"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Granite Gloves"], ["site_id", 1], ["created_at", "2016-01-27 17:26:25.224059"], ["updated_at", "2016-01-27 17:26:25.224059"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (9.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (16.4ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Flo Goldner"], ["job_title", "District Configuration Producer"], ["greetings", "Deserunt quisquam quod minima dolor distinctio."], ["summary", "Qui voluptates velit quis cumque omnis. Et rerum consequatur. Est voluptates sapiente in."], ["key", "flo_goldner"], ["created_at", "2016-01-27 17:26:25.250317"], ["updated_at", "2016-01-27 17:26:25.250317"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "mollitia"], ["key", "mollitia"], ["created_at", "2016-01-27 17:26:25.252734"], ["updated_at", "2016-01-27 17:26:25.252734"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-27 17:26:25.256877"], ["updated_at", "2016-01-27 17:26:25.256877"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Rubber Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:26:25.259117"], ["updated_at", "2016-01-27 17:26:25.259117"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wool Computer"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:26:25.261472"], ["updated_at", "2016-01-27 17:26:25.261472"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Copper Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:26:25.263990"], ["updated_at", "2016-01-27 17:26:25.263990"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Steel Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:26:25.267110"], ["updated_at", "2016-01-27 17:26:25.267110"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (27.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Meggie Gleason"], ["job_title", "National Functionality Designer"], ["greetings", "Aut et excepturi et."], ["summary", "Modi quia autem quo vitae. Recusandae dolorum unde voluptas molestiae rem consequatur itaque. Porro minus assumenda aut. Alias saepe hic ipsam maxime velit modi molestiae."], ["key", "ms_meggie_gleason"], ["created_at", "2016-01-27 17:26:25.309395"], ["updated_at", "2016-01-27 17:26:25.309395"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "non"], ["key", "non"], ["created_at", "2016-01-27 17:26:25.312394"], ["updated_at", "2016-01-27 17:26:25.312394"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-27 17:26:25.315062"], ["updated_at", "2016-01-27 17:26:25.315062"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wool Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:26:25.318192"], ["updated_at", "2016-01-27 17:26:25.318192"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Leather Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:26:25.321452"], ["updated_at", "2016-01-27 17:26:25.321452"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Steel Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:26:25.324685"], ["updated_at", "2016-01-27 17:26:25.324685"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Linen Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:26:25.327271"], ["updated_at", "2016-01-27 17:26:25.327271"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.4ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.8ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Elwin McKenzie"], ["job_title", "Dynamic Mobility Architect"], ["greetings", "Fuga dicta ipsam ipsa."], ["summary", "Tenetur provident possimus autem. Repellat ut laboriosam voluptates accusantium. Laboriosam aliquam temporibus velit quisquam culpa a."], ["key", "elwin_mckenzie"], ["created_at", "2016-01-27 17:26:25.361523"], ["updated_at", "2016-01-27 17:26:25.361523"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (12.9ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dameon Spinka"], ["job_title", "National Configuration Designer"], ["greetings", "Hic sit id animi ut."], ["summary", "Dolorum debitis odit. Occaecati dolor facilis. Quis veritatis est nihil molestiae eveniet."], ["key", "dameon_spinka"], ["created_at", "2016-01-27 17:26:25.395739"], ["updated_at", "2016-01-27 17:26:25.395739"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (5.4ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Guido Yost"], ["job_title", "National Marketing Developer"], ["greetings", "Facere repudiandae temporibus asperiores quia expedita saepe et autem."], ["summary", "Autem doloremque exercitationem debitis. Tempora voluptatum eligendi rerum. Iste ratione dolorum. Aut odio nostrum earum commodi asperiores repudiandae ut."], ["key", "guido_yost"], ["created_at", "2016-01-27 17:26:25.410542"], ["updated_at", "2016-01-27 17:26:25.410542"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fugiat"], ["key", "fugiat"], ["created_at", "2016-01-27 17:26:25.413290"], ["updated_at", "2016-01-27 17:26:25.413290"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "veritatis"], ["key", "veritatis"], ["created_at", "2016-01-27 17:26:25.415738"], ["updated_at", "2016-01-27 17:26:25.415738"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Cotton Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:26:25.419799"], ["updated_at", "2016-01-27 17:26:25.419799"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Steel Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:26:25.422473"], ["updated_at", "2016-01-27 17:26:25.422473"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Leather Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:26:25.424446"], ["updated_at", "2016-01-27 17:26:25.424446"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 [35m (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Plastic Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:26:25.426747"], ["updated_at", "2016-01-27 17:26:25.426747"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.8ms) Portfolio::SiteSocialLink Load (6.5ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (25.6ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Meredith Gorczany"], ["job_title", "District Security Designer"], ["greetings", "Maxime dignissimos qui esse."], ["summary", "Saepe qui explicabo delectus. Odit placeat totam quo facere molestiae consequatur. Voluptatem repellat qui fuga veritatis natus magni exercitationem. Possimus voluptas qui ratione. Deleniti mollitia praesentium atque ratione."], ["key", "meredith_gorczany"], ["created_at", "2016-01-27 17:35:43.435731"], ["updated_at", "2016-01-27 17:35:43.435731"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:35:43.452092"], ["updated_at", "2016-01-27 17:35:43.452092"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Florida Balistreri"], ["job_title", "Dynamic Paradigm Designer"], ["greetings", "Facere ut quo enim velit."], ["summary", "Quod cumque vel magni nulla et placeat. Voluptas asperiores quasi et. Et et excepturi delectus modi. Saepe velit ex aut eum."], ["key", "florida_balistreri"], ["created_at", "2016-01-27 17:35:43.458247"], ["updated_at", "2016-01-27 17:35:43.458247"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:35:43.459969"], ["updated_at", "2016-01-27 17:35:43.459969"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Onie Harris"], ["job_title", "Direct Program Orchestrator"], ["greetings", "Ducimus aperiam consequatur necessitatibus modi praesentium et quis."], ["summary", "Ut repudiandae sunt est. Est et sequi. Repellendus sit omnis et voluptates expedita qui ut. Ratione culpa illo inventore officia natus corrupti. Et aspernatur omnis aperiam dolor quaerat."], ["key", "onie_harris"], ["created_at", "2016-01-27 17:35:43.462531"], ["updated_at", "2016-01-27 17:35:43.462531"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:35:43.463977"], ["updated_at", "2016-01-27 17:35:43.463977"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lois Bechtelar"], ["job_title", "Regional Directives Executive"], ["greetings", "Omnis totam autem deleniti nemo eligendi voluptatem ut voluptatem."], ["summary", "Repellat ullam quis aut reiciendis. Ut accusantium harum velit vel est. Eum corporis ipsam architecto."], ["key", "lois_bechtelar"], ["created_at", "2016-01-27 17:35:43.470711"], ["updated_at", "2016-01-27 17:35:43.470711"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:35:43.472696"], ["updated_at", "2016-01-27 17:35:43.472696"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Susana Hilll"], ["job_title", "Principal Accountability Facilitator"], ["greetings", "Consequatur fugit rerum aliquid."], ["summary", "Iste voluptatibus odio. Est mollitia aperiam sed et. Beatae nulla accusantium rerum. Voluptates aspernatur ea quibusdam quas sint laborum. Quo voluptates debitis aspernatur."], ["key", "susana_hilll"], ["created_at", "2016-01-27 17:35:43.476206"], ["updated_at", "2016-01-27 17:35:43.476206"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:35:43.477925"], ["updated_at", "2016-01-27 17:35:43.477925"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kurt Haag"], ["job_title", "Future Interactions Orchestrator"], ["greetings", "Inventore debitis ratione omnis asperiores repellendus quia consequatur."], ["summary", "Tenetur rerum magni nihil nulla. Consequatur cupiditate culpa officiis modi exercitationem. Mollitia pariatur dolores rerum. Delectus omnis ducimus."], ["key", "kurt_haag"], ["created_at", "2016-01-27 17:35:43.481647"], ["updated_at", "2016-01-27 17:35:43.481647"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:35:43.483389"], ["updated_at", "2016-01-27 17:35:43.483389"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Glenna Ferry"], ["job_title", "Dynamic Web Director"], ["greetings", "Dignissimos non commodi cum et inventore."], ["summary", "Assumenda et illum fugiat temporibus quisquam excepturi. Autem consectetur numquam consequuntur impedit. Nulla beatae consectetur. Eveniet voluptatum impedit odit qui."], ["key", "mrs_glenna_ferry"], ["created_at", "2016-01-27 17:35:43.487630"], ["updated_at", "2016-01-27 17:35:43.487630"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-27 17:35:43.493100"], ["updated_at", "2016-01-27 17:35:43.493100"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "officia"], ["key", "officia"], ["created_at", "2016-01-27 17:35:43.494736"], ["updated_at", "2016-01-27 17:35:43.494736"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Iron Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:35:43.503069"], ["updated_at", "2016-01-27 17:35:43.503069"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Bronze Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:35:43.505586"], ["updated_at", "2016-01-27 17:35:43.505586"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Iron Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:35:43.507619"], ["updated_at", "2016-01-27 17:35:43.507619"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Marble Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:35:43.509392"], ["updated_at", "2016-01-27 17:35:43.509392"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bart Corwin"], ["job_title", "International Branding Manager"], ["greetings", "Sed rerum voluptatum libero aliquam asperiores."], ["summary", "Modi reprehenderit est necessitatibus quae animi. Vero animi pariatur rerum natus. Ab nostrum quibusdam nisi saepe maxime dolores."], ["key", "bart_corwin"], ["created_at", "2016-01-27 17:35:43.572644"], ["updated_at", "2016-01-27 17:35:43.572644"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:35:43.575391"], ["updated_at", "2016-01-27 17:35:43.575391"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Iron Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:35:43.577904"], ["updated_at", "2016-01-27 17:35:43.577904"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Plastic Car"], ["site_id", 1], ["created_at", "2016-01-27 17:35:43.579381"], ["updated_at", "2016-01-27 17:35:43.579381"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Concrete Bag"], ["site_id", 1], ["created_at", "2016-01-27 17:35:43.581000"], ["updated_at", "2016-01-27 17:35:43.581000"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (10.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (23.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.3ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (251.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (328.7ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lea Crona"], ["job_title", "Investor Functionality Architect"], ["greetings", "Et id nisi libero aut."], ["summary", "Eligendi fuga explicabo. At nisi in ipsam adipisci cupiditate eum est. Velit non quia. Nihil provident voluptatem et."], ["key", "lea_crona"], ["created_at", "2016-01-27 17:35:43.934514"], ["updated_at", "2016-01-27 17:35:43.934514"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Linen Shirt"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:35:43.939272"], ["updated_at", "2016-01-27 17:35:43.939272"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Wool Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:35:43.943723"], ["updated_at", "2016-01-27 17:35:43.943723"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Rubber Car"], ["site_id", 1], ["created_at", "2016-01-27 17:35:43.947560"], ["updated_at", "2016-01-27 17:35:43.947560"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Iron Pants"], ["site_id", 1], ["created_at", "2016-01-27 17:35:43.951633"], ["updated_at", "2016-01-27 17:35:43.951633"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.6ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Elsie Terry"], ["job_title", "Corporate Metrics Liaison"], ["greetings", "Et error quisquam cumque illum ea rerum quia architecto."], ["summary", "Sint cupiditate facere et vero eum adipisci. Quisquam ut enim. Enim in ut debitis laborum voluptas. Quia fugiat quod voluptas quis inventore similique. Dolores assumenda quia non placeat hic repudiandae eaque."], ["key", "elsie_terry"], ["created_at", "2016-01-27 17:35:43.981730"], ["updated_at", "2016-01-27 17:35:43.981730"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "amet"], ["key", "amet"], ["created_at", "2016-01-27 17:35:43.985219"], ["updated_at", "2016-01-27 17:35:43.985219"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "provident"], ["key", "provident"], ["created_at", "2016-01-27 17:35:43.988744"], ["updated_at", "2016-01-27 17:35:43.988744"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Iron Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:35:43.991825"], ["updated_at", "2016-01-27 17:35:43.991825"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Plastic Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:35:43.995032"], ["updated_at", "2016-01-27 17:35:43.995032"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Paper Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:35:43.998031"], ["updated_at", "2016-01-27 17:35:43.998031"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Linen Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:35:44.001925"], ["updated_at", "2016-01-27 17:35:44.001925"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.7ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.4ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (33.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Johnathon Stracke"], ["job_title", "Global Optimization Producer"], ["greetings", "Voluptate sint adipisci officia omnis."], ["summary", "Sunt est repudiandae totam. Id dolor omnis voluptas officiis ducimus. Ducimus voluptates aut dolores harum est. Magni quam id facilis vel aut ut."], ["key", "johnathon_stracke"], ["created_at", "2016-01-27 17:35:44.044283"], ["updated_at", "2016-01-27 17:35:44.044283"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "autem"], ["key", "autem"], ["created_at", "2016-01-27 17:35:44.046577"], ["updated_at", "2016-01-27 17:35:44.046577"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsam"], ["key", "ipsam"], ["created_at", "2016-01-27 17:35:44.048660"], ["updated_at", "2016-01-27 17:35:44.048660"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Copper Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:35:44.052177"], ["updated_at", "2016-01-27 17:35:44.052177"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Rubber Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:35:44.055573"], ["updated_at", "2016-01-27 17:35:44.055573"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Leather Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:35:44.058347"], ["updated_at", "2016-01-27 17:35:44.058347"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Aluminum Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:35:44.062335"], ["updated_at", "2016-01-27 17:35:44.062335"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.7ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (18.4ms) Portfolio::SiteItemCategory Load (0.3ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Shaun Franecki"], ["job_title", "Dynamic Accounts Assistant"], ["greetings", "Ea et reiciendis dolorem eos minima omnis."], ["summary", "Alias voluptatum consequatur quod dignissimos officia adipisci. Consectetur a et. Velit deserunt ut quia minima amet fugiat consequatur."], ["key", "shaun_franecki"], ["created_at", "2016-01-27 17:35:44.093142"], ["updated_at", "2016-01-27 17:35:44.093142"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (13.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Shayna Cartwright"], ["job_title", "Global Research Designer"], ["greetings", "Molestiae sit neque eligendi non."], ["summary", "Veritatis voluptatibus nemo sequi tenetur quibusdam quia. Accusantium repellat eius amet maxime consectetur. Officia debitis repellendus dolorem delectus et. Et a dignissimos nulla."], ["key", "shayna_cartwright"], ["created_at", "2016-01-27 17:35:44.127059"], ["updated_at", "2016-01-27 17:35:44.127059"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (4.5ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jamie Shields"], ["job_title", "Dynamic Applications Specialist"], ["greetings", "Ut soluta mollitia et et esse occaecati maxime exercitationem."], ["summary", "Voluptatem dolore vero. Ad dolor harum sed molestiae. Natus maxime assumenda nisi. Sint veritatis molestiae vel. Hic tempore eveniet."], ["key", "jamie_shields"], ["created_at", "2016-01-27 17:35:44.139663"], ["updated_at", "2016-01-27 17:35:44.139663"]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "enim"], ["key", "enim"], ["created_at", "2016-01-27 17:35:44.142283"], ["updated_at", "2016-01-27 17:35:44.142283"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consequatur"], ["key", "consequatur"], ["created_at", "2016-01-27 17:35:44.144893"], ["updated_at", "2016-01-27 17:35:44.144893"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Linen Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:35:44.148257"], ["updated_at", "2016-01-27 17:35:44.148257"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Aluminum Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:35:44.152713"], ["updated_at", "2016-01-27 17:35:44.152713"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Bronze Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:35:44.155544"], ["updated_at", "2016-01-27 17:35:44.155544"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Cotton Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:35:44.163984"], ["updated_at", "2016-01-27 17:35:44.163984"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (3.4ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.5ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alford Schmeler"], ["job_title", "Dynamic Implementation Supervisor"], ["greetings", "Nobis ad et fugit non libero."], ["summary", "Ut laboriosam quo dolores. Expedita fugiat in. Quos saepe doloremque suscipit sint natus. Et rerum et aperiam sunt sint. Dicta vitae quibusdam sit et aut exercitationem."], ["key", "alford_schmeler"], ["created_at", "2016-01-27 17:36:19.559883"], ["updated_at", "2016-01-27 17:36:19.559883"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:36:19.575826"], ["updated_at", "2016-01-27 17:36:19.575826"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Stacy O'Connell"], ["job_title", "Direct Directives Executive"], ["greetings", "Consequatur quibusdam fugit doloribus ut sunt."], ["summary", "Alias quos tempore inventore. Similique accusantium est provident quia veniam. Id qui consequuntur et nobis expedita."], ["key", "miss_stacy_o_connell"], ["created_at", "2016-01-27 17:36:19.581796"], ["updated_at", "2016-01-27 17:36:19.581796"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:36:19.583607"], ["updated_at", "2016-01-27 17:36:19.583607"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ava Purdy"], ["job_title", "International Metrics Assistant"], ["greetings", "Neque dolorem et ullam."], ["summary", "Adipisci voluptates ut. Numquam rerum neque quibusdam. Et sed culpa ut quasi neque reprehenderit."], ["key", "ava_purdy"], ["created_at", "2016-01-27 17:36:19.586124"], ["updated_at", "2016-01-27 17:36:19.586124"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:36:19.587542"], ["updated_at", "2016-01-27 17:36:19.587542"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kamron Lebsack"], ["job_title", "Global Response Officer"], ["greetings", "Est ducimus asperiores magnam odit."], ["summary", "Ut architecto eveniet. Vitae quam facilis aspernatur repellendus rerum praesentium. Nulla commodi voluptas eos dolores id. Quo quam eius eos dolorem distinctio beatae. Molestiae blanditiis soluta."], ["key", "kamron_lebsack"], ["created_at", "2016-01-27 17:36:19.593971"], ["updated_at", "2016-01-27 17:36:19.593971"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:36:19.596822"], ["updated_at", "2016-01-27 17:36:19.596822"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Melyssa Schoen"], ["job_title", "Lead Directives Orchestrator"], ["greetings", "Molestiae alias rerum officia pariatur et nobis."], ["summary", "In omnis et consequatur occaecati. Quo velit cumque. Non odit corrupti modi esse consequuntur omnis. Officiis sit voluptas aut iste quam voluptatem."], ["key", "melyssa_schoen"], ["created_at", "2016-01-27 17:36:19.600805"], ["updated_at", "2016-01-27 17:36:19.600805"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:36:19.602563"], ["updated_at", "2016-01-27 17:36:19.602563"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Vinnie Greenholt"], ["job_title", "District Marketing Officer"], ["greetings", "Mollitia soluta exercitationem nesciunt vitae deleniti."], ["summary", "Ipsam temporibus odio. Beatae porro incidunt ea natus delectus facere voluptas. Molestias sit officia qui commodi perspiciatis. Provident recusandae officiis hic aut adipisci est."], ["key", "vinnie_greenholt"], ["created_at", "2016-01-27 17:36:19.606577"], ["updated_at", "2016-01-27 17:36:19.606577"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:36:19.608935"], ["updated_at", "2016-01-27 17:36:19.608935"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Brain Jenkins"], ["job_title", "District Infrastructure Engineer"], ["greetings", "Sint est sit voluptates et velit ipsum ea ratione."], ["summary", "Natus voluptatem sit porro consectetur. Voluptatem quisquam et. Ipsum ut odit et."], ["key", "brain_jenkins"], ["created_at", "2016-01-27 17:36:19.613521"], ["updated_at", "2016-01-27 17:36:19.613521"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "atque"], ["key", "atque"], ["created_at", "2016-01-27 17:36:19.620050"], ["updated_at", "2016-01-27 17:36:19.620050"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sint"], ["key", "sint"], ["created_at", "2016-01-27 17:36:19.621802"], ["updated_at", "2016-01-27 17:36:19.621802"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Cotton Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:36:19.630456"], ["updated_at", "2016-01-27 17:36:19.630456"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Silk Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:36:19.632689"], ["updated_at", "2016-01-27 17:36:19.632689"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Wool Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:36:19.634497"], ["updated_at", "2016-01-27 17:36:19.634497"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Linen Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:36:19.636323"], ["updated_at", "2016-01-27 17:36:19.636323"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Vida Berge"], ["job_title", "National Intranet Consultant"], ["greetings", "Et est distinctio sit velit sed eos dolorum."], ["summary", "Nesciunt ipsum laborum aliquid praesentium facilis veniam ut. Quia aut cumque. Molestiae sit qui similique quaerat perspiciatis et. Sit nobis sequi non enim alias. Nihil est quia."], ["key", "vida_berge"], ["created_at", "2016-01-27 17:36:19.662756"], ["updated_at", "2016-01-27 17:36:19.662756"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:36:19.664938"], ["updated_at", "2016-01-27 17:36:19.664938"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Bronze Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:36:19.666948"], ["updated_at", "2016-01-27 17:36:19.666948"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Concrete Computer"], ["site_id", 1], ["created_at", "2016-01-27 17:36:19.669085"], ["updated_at", "2016-01-27 17:36:19.669085"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Linen Knife"], ["site_id", 1], ["created_at", "2016-01-27 17:36:19.670754"], ["updated_at", "2016-01-27 17:36:19.670754"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (10.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (22.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.3ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (236.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (316.1ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Deontae Skiles MD"], ["job_title", "Dynamic Mobility Agent"], ["greetings", "Optio vel quis ducimus facilis."], ["summary", "Veniam natus in. Quibusdam eum consequatur. Non qui alias. Magni ea ipsum blanditiis id voluptatibus. Aut laudantium quia ab."], ["key", "deontae_skiles_md"], ["created_at", "2016-01-27 17:36:20.010566"], ["updated_at", "2016-01-27 17:36:20.010566"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Iron Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:36:20.014979"], ["updated_at", "2016-01-27 17:36:20.014979"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Concrete Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:36:20.019615"], ["updated_at", "2016-01-27 17:36:20.019615"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Aluminum Gloves"], ["site_id", 1], ["created_at", "2016-01-27 17:36:20.023270"], ["updated_at", "2016-01-27 17:36:20.023270"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Marble Bottle"], ["site_id", 1], ["created_at", "2016-01-27 17:36:20.026945"], ["updated_at", "2016-01-27 17:36:20.026945"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aiden Barrows"], ["job_title", "Dynamic Group Consultant"], ["greetings", "Et qui ut omnis debitis rem."], ["summary", "Magnam quo ad sit sit asperiores id. Assumenda rerum voluptas doloribus architecto. Dolor magni molestias voluptatem est consectetur. Qui atque ut facilis excepturi qui."], ["key", "aiden_barrows"], ["created_at", "2016-01-27 17:36:20.056263"], ["updated_at", "2016-01-27 17:36:20.056263"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "commodi"], ["key", "commodi"], ["created_at", "2016-01-27 17:36:20.058252"], ["updated_at", "2016-01-27 17:36:20.058252"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptates"], ["key", "voluptates"], ["created_at", "2016-01-27 17:36:20.059788"], ["updated_at", "2016-01-27 17:36:20.059788"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Cotton Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:36:20.062027"], ["updated_at", "2016-01-27 17:36:20.062027"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Marble Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:36:20.064635"], ["updated_at", "2016-01-27 17:36:20.064635"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Aluminum Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:36:20.066500"], ["updated_at", "2016-01-27 17:36:20.066500"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Silk Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:36:20.068496"], ["updated_at", "2016-01-27 17:36:20.068496"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.4ms) Portfolio::SiteItemCategory Load (0.7ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.8ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Adelbert McClure"], ["job_title", "Lead Intranet Officer"], ["greetings", "Perspiciatis cumque ipsam rerum molestias earum."], ["summary", "Expedita iure voluptatem quia quaerat. Iure nesciunt voluptatem. Accusamus neque sunt."], ["key", "adelbert_mcclure"], ["created_at", "2016-01-27 17:36:20.100176"], ["updated_at", "2016-01-27 17:36:20.100176"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cupiditate"], ["key", "cupiditate"], ["created_at", "2016-01-27 17:36:20.108533"], ["updated_at", "2016-01-27 17:36:20.108533"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 17:36:20.110829"], ["updated_at", "2016-01-27 17:36:20.110829"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Linen Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:36:20.113843"], ["updated_at", "2016-01-27 17:36:20.113843"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Plastic Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:36:20.117945"], ["updated_at", "2016-01-27 17:36:20.117945"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Clock"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:36:20.120957"], ["updated_at", "2016-01-27 17:36:20.120957"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wooden Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:36:20.124179"], ["updated_at", "2016-01-27 17:36:20.124179"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Julianne Hettinger DVM"], ["job_title", "Principal Communications Administrator"], ["greetings", "Non qui eos odio similique sint."], ["summary", "Et consequatur et quas voluptas velit et ea. Culpa aut incidunt et rerum. Sapiente voluptas consequatur dolores et velit vel. Et perspiciatis sed sed aut magni. In cum ut laboriosam."], ["key", "julianne_hettinger_dvm"], ["created_at", "2016-01-27 17:36:20.156815"], ["updated_at", "2016-01-27 17:36:20.156815"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.2ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (11.5ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tara Steuber V"], ["job_title", "Customer Division Supervisor"], ["greetings", "Tenetur voluptatibus sed blanditiis provident."], ["summary", "Ut nesciunt laudantium. Totam et quae ut. Ab sunt ducimus corrupti quos. Dolorem repellendus molestiae labore alias officiis et dolor. Esse doloremque aut voluptatem."], ["key", "tara_steuber_v"], ["created_at", "2016-01-27 17:36:20.187966"], ["updated_at", "2016-01-27 17:36:20.187966"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (5.2ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.7ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Chelsey Stehr"], ["job_title", "Direct Communications Architect"], ["greetings", "Autem illum voluptatem quia."], ["summary", "Ut quo deleniti assumenda est dolorem. Dolorem illum dignissimos. Distinctio reprehenderit quisquam. Similique odio non alias praesentium cum."], ["key", "chelsey_stehr"], ["created_at", "2016-01-27 17:36:20.204381"], ["updated_at", "2016-01-27 17:36:20.204381"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "necessitatibus"], ["key", "necessitatibus"], ["created_at", "2016-01-27 17:36:20.208279"], ["updated_at", "2016-01-27 17:36:20.208279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "praesentium"], ["key", "praesentium"], ["created_at", "2016-01-27 17:36:20.210253"], ["updated_at", "2016-01-27 17:36:20.210253"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Bronze Car"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:36:20.212754"], ["updated_at", "2016-01-27 17:36:20.212754"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Cotton Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:36:20.215994"], ["updated_at", "2016-01-27 17:36:20.215994"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Concrete Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:36:20.220614"], ["updated_at", "2016-01-27 17:36:20.220614"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Cotton Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:36:20.224478"], ["updated_at", "2016-01-27 17:36:20.224478"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (7.4ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (22.0ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Russel Fritsch"], ["job_title", "Central Infrastructure Strategist"], ["greetings", "Quam suscipit quis incidunt perferendis doloribus laborum."], ["summary", "Et laboriosam molestias. Culpa enim natus quia. Dolorem voluptas molestiae saepe dolore autem inventore perspiciatis. Nam eum eligendi accusamus ad voluptas qui nobis. Voluptatem odit omnis quia rerum facilis ut."], ["key", "russel_fritsch"], ["created_at", "2016-01-27 17:39:28.475950"], ["updated_at", "2016-01-27 17:39:28.475950"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:39:28.493221"], ["updated_at", "2016-01-27 17:39:28.493221"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Clifford Eichmann"], ["job_title", "Central Web Liaison"], ["greetings", "Excepturi magnam ad facere est amet sint sapiente."], ["summary", "Tempora beatae qui maxime repellat aspernatur eum molestiae. Voluptate dignissimos voluptatibus a sunt porro. Sed et in explicabo non et corrupti. Incidunt sint harum necessitatibus culpa nihil. Occaecati harum aut consequatur."], ["key", "clifford_eichmann"], ["created_at", "2016-01-27 17:39:28.499145"], ["updated_at", "2016-01-27 17:39:28.499145"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:39:28.501256"], ["updated_at", "2016-01-27 17:39:28.501256"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Stephon Cummerata"], ["job_title", "Chief Configuration Supervisor"], ["greetings", "Facere fugit consequatur tempore eos quos vel."], ["summary", "Maxime quidem hic optio aut distinctio officia. Et illo aut. Veritatis molestiae consequatur excepturi vel. Quis officia esse maxime corrupti dignissimos ab id."], ["key", "stephon_cummerata"], ["created_at", "2016-01-27 17:39:28.503749"], ["updated_at", "2016-01-27 17:39:28.503749"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:39:28.505453"], ["updated_at", "2016-01-27 17:39:28.505453"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jerad Olson"], ["job_title", "Regional Usability Orchestrator"], ["greetings", "Et sapiente minima sit voluptatem."], ["summary", "Et molestiae minus atque necessitatibus aut est. Ab dolore dicta. Necessitatibus ea dicta corrupti quia. Nemo beatae aliquam. Temporibus nemo qui neque eum ut nihil fugit."], ["key", "jerad_olson"], ["created_at", "2016-01-27 17:39:28.515023"], ["updated_at", "2016-01-27 17:39:28.515023"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:39:28.517606"], ["updated_at", "2016-01-27 17:39:28.517606"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Zetta Armstrong"], ["job_title", "Central Quality Architect"], ["greetings", "Quo sequi maiores sapiente rerum necessitatibus enim quo natus."], ["summary", "Quia fugiat sint pariatur eos. Atque aliquam doloribus neque possimus molestias modi. Rem sequi et ab maiores."], ["key", "zetta_armstrong"], ["created_at", "2016-01-27 17:39:28.521477"], ["updated_at", "2016-01-27 17:39:28.521477"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:39:28.523466"], ["updated_at", "2016-01-27 17:39:28.523466"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Paolo Leffler"], ["job_title", "Investor Group Architect"], ["greetings", "Quia cum voluptatem ut veniam earum eligendi voluptas in."], ["summary", "Delectus sit minima placeat cupiditate asperiores. Ut minima expedita quae enim quibusdam. Perferendis et eos ut."], ["key", "paolo_leffler"], ["created_at", "2016-01-27 17:39:28.527769"], ["updated_at", "2016-01-27 17:39:28.527769"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:39:28.529842"], ["updated_at", "2016-01-27 17:39:28.529842"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Diamond Feeney"], ["job_title", "Lead Program Consultant"], ["greetings", "Repudiandae cupiditate similique aut dolorum delectus qui laborum."], ["summary", "Rem aut molestiae et eaque aliquid. Temporibus omnis doloremque ipsum. Expedita odio molestiae. Sed nihil deleniti officia totam non. Nihil hic odit."], ["key", "diamond_feeney"], ["created_at", "2016-01-27 17:39:28.534509"], ["updated_at", "2016-01-27 17:39:28.534509"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "laborum"], ["key", "laborum"], ["created_at", "2016-01-27 17:39:28.539573"], ["updated_at", "2016-01-27 17:39:28.539573"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "inventore"], ["key", "inventore"], ["created_at", "2016-01-27 17:39:28.541640"], ["updated_at", "2016-01-27 17:39:28.541640"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Rubber Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:39:28.550485"], ["updated_at", "2016-01-27 17:39:28.550485"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Leather Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:39:28.552866"], ["updated_at", "2016-01-27 17:39:28.552866"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Leather Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:39:28.554670"], ["updated_at", "2016-01-27 17:39:28.554670"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wool Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:39:28.556608"], ["updated_at", "2016-01-27 17:39:28.556608"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Elsa Towne"], ["job_title", "Future Implementation Developer"], ["greetings", "Autem tenetur corrupti necessitatibus nam quam pariatur suscipit placeat."], ["summary", "Voluptatibus quaerat sunt. Autem a quas. Incidunt dolores et ut quos qui."], ["key", "elsa_towne"], ["created_at", "2016-01-27 17:39:28.585769"], ["updated_at", "2016-01-27 17:39:28.585769"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Granite Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:39:28.588073"], ["updated_at", "2016-01-27 17:39:28.588073"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:39:28.590882"], ["updated_at", "2016-01-27 17:39:28.590882"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Concrete Watch"], ["site_id", 1], ["created_at", "2016-01-27 17:39:28.592928"], ["updated_at", "2016-01-27 17:39:28.592928"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Linen Coat"], ["site_id", 1], ["created_at", "2016-01-27 17:39:28.594588"], ["updated_at", "2016-01-27 17:39:28.594588"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (20.8ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (237.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (313.7ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Darrion Schultz PhD"], ["job_title", "Chief Response Engineer"], ["greetings", "Illum occaecati distinctio voluptas quia error."], ["summary", "At est quaerat exercitationem nobis voluptatem. Quis asperiores impedit consequatur sed vel. Placeat ipsa reiciendis quisquam porro qui. Veritatis eius exercitationem qui rem dolore. Exercitationem architecto est autem explicabo iure quia id."], ["key", "darrion_schultz_phd"], ["created_at", "2016-01-27 17:39:28.932057"], ["updated_at", "2016-01-27 17:39:28.932057"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Copper Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:39:28.936586"], ["updated_at", "2016-01-27 17:39:28.936586"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Silk Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:39:28.940786"], ["updated_at", "2016-01-27 17:39:28.940786"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Copper Shoes"], ["site_id", 1], ["created_at", "2016-01-27 17:39:28.944682"], ["updated_at", "2016-01-27 17:39:28.944682"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Aluminum Coat"], ["site_id", 1], ["created_at", "2016-01-27 17:39:28.948692"], ["updated_at", "2016-01-27 17:39:28.948692"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.6ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Allison Bednar"], ["job_title", "Central Intranet Specialist"], ["greetings", "Cumque corrupti et et quia dolor possimus."], ["summary", "Molestiae nostrum ipsa. Dolores est quis hic. Non nihil et delectus laboriosam sunt. Ut incidunt aut non magnam."], ["key", "allison_bednar"], ["created_at", "2016-01-27 17:39:28.979801"], ["updated_at", "2016-01-27 17:39:28.979801"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "provident"], ["key", "provident"], ["created_at", "2016-01-27 17:39:28.981837"], ["updated_at", "2016-01-27 17:39:28.981837"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "non"], ["key", "non"], ["created_at", "2016-01-27 17:39:28.984365"], ["updated_at", "2016-01-27 17:39:28.984365"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Bronze Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:39:28.986896"], ["updated_at", "2016-01-27 17:39:28.986896"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Granite Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:39:28.989051"], ["updated_at", "2016-01-27 17:39:28.989051"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Copper Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:39:28.991360"], ["updated_at", "2016-01-27 17:39:28.991360"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:39:28.993556"], ["updated_at", "2016-01-27 17:39:28.993556"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.0ms)  (0.3ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (25.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.8ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Delpha Beatty"], ["job_title", "District Creative Coordinator"], ["greetings", "Sequi repudiandae excepturi nulla at quia."], ["summary", "Eligendi omnis excepturi incidunt. Voluptas nesciunt maiores aut. Quae dolorem eum dolor inventore."], ["key", "delpha_beatty"], ["created_at", "2016-01-27 17:39:29.029343"], ["updated_at", "2016-01-27 17:39:29.029343"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "excepturi"], ["key", "excepturi"], ["created_at", "2016-01-27 17:39:29.037746"], ["updated_at", "2016-01-27 17:39:29.037746"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 17:39:29.040405"], ["updated_at", "2016-01-27 17:39:29.040405"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Plastic Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:39:29.043934"], ["updated_at", "2016-01-27 17:39:29.043934"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Marble Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:39:29.047580"], ["updated_at", "2016-01-27 17:39:29.047580"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Silk Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:39:29.051454"], ["updated_at", "2016-01-27 17:39:29.051454"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Linen Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:39:29.054473"], ["updated_at", "2016-01-27 17:39:29.054473"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.9ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Alvah Treutel"], ["job_title", "Future Infrastructure Associate"], ["greetings", "Sit veniam ut et ut."], ["summary", "Earum magni atque laudantium cumque et. Omnis natus consequuntur dolore est similique. Vel itaque ut repudiandae dolore ipsa quod fuga. Assumenda autem saepe dolore dolores."], ["key", "dr_alvah_treutel"], ["created_at", "2016-01-27 17:39:29.086941"], ["updated_at", "2016-01-27 17:39:29.086941"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (14.7ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jacinthe Pouros"], ["job_title", "Future Web Strategist"], ["greetings", "Dicta sint voluptatem exercitationem."], ["summary", "Quod illum qui optio id. Aut possimus voluptas esse sunt molestiae dolore suscipit. Rerum quasi atque. Saepe molestiae illo repudiandae aspernatur velit. Repudiandae et tempora qui placeat voluptatem in ut."], ["key", "jacinthe_pouros"], ["created_at", "2016-01-27 17:39:29.120582"], ["updated_at", "2016-01-27 17:39:29.120582"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (5.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Grover Ledner"], ["job_title", "International Brand Engineer"], ["greetings", "Veniam accusamus praesentium dolore alias quia."], ["summary", "Est ut quos unde quaerat qui commodi vero. Enim soluta voluptatem beatae iste. Doloribus consequuntur voluptates. Maiores dolorem maxime eligendi. Maiores asperiores totam ratione iste culpa consectetur minima."], ["key", "grover_ledner"], ["created_at", "2016-01-27 17:39:29.139067"], ["updated_at", "2016-01-27 17:39:29.139067"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsa"], ["key", "ipsa"], ["created_at", "2016-01-27 17:39:29.142822"], ["updated_at", "2016-01-27 17:39:29.142822"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nobis"], ["key", "nobis"], ["created_at", "2016-01-27 17:39:29.147388"], ["updated_at", "2016-01-27 17:39:29.147388"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Copper Car"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:39:29.150084"], ["updated_at", "2016-01-27 17:39:29.150084"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Aluminum Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:39:29.154764"], ["updated_at", "2016-01-27 17:39:29.154764"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Steel Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:39:29.158505"], ["updated_at", "2016-01-27 17:39:29.158505"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Steel Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:39:29.161606"], ["updated_at", "2016-01-27 17:39:29.161606"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (7.9ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (22.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Percy Ebert"], ["job_title", "Internal Web Strategist"], ["greetings", "Porro nesciunt aspernatur amet."], ["summary", "Ipsum id omnis ex doloremque est asperiores. Quisquam temporibus eaque repellat est. Vel et id. Qui veritatis assumenda amet earum sed consectetur iusto. Eos autem ipsum dignissimos quas iusto labore."], ["key", "percy_ebert"], ["created_at", "2016-01-27 17:42:54.527893"], ["updated_at", "2016-01-27 17:42:54.527893"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:42:54.544504"], ["updated_at", "2016-01-27 17:42:54.544504"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Marlon Kunze"], ["job_title", "International Quality Director"], ["greetings", "Et quibusdam fuga dolor est nesciunt quia rem."], ["summary", "Sint maxime enim incidunt non cum sed. Quaerat omnis ut et facilis id quis consequatur. Possimus ea nemo qui et eum sequi repellat. Unde laboriosam ut omnis."], ["key", "mrs_marlon_kunze"], ["created_at", "2016-01-27 17:42:54.549778"], ["updated_at", "2016-01-27 17:42:54.549778"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:42:54.552366"], ["updated_at", "2016-01-27 17:42:54.552366"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ella Wisoky DDS"], ["job_title", "District Configuration Manager"], ["greetings", "Commodi voluptatem voluptate deserunt sit nemo sunt repellendus."], ["summary", "Fugiat nisi dolores laboriosam ut. Quia repudiandae corporis placeat et nam in. Rem quos est veritatis. Eius quae vitae quidem. Necessitatibus amet cumque blanditiis vero unde quaerat."], ["key", "ella_wisoky_dds"], ["created_at", "2016-01-27 17:42:54.555325"], ["updated_at", "2016-01-27 17:42:54.555325"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:42:54.557048"], ["updated_at", "2016-01-27 17:42:54.557048"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Erik Welch"], ["job_title", "Corporate Quality Consultant"], ["greetings", "Quasi vitae laborum sit maiores qui fugit nulla."], ["summary", "Ut et repellat voluptatem est quaerat. Reprehenderit in nobis dicta rerum esse facere. Qui fugit illo vitae."], ["key", "dr_erik_welch"], ["created_at", "2016-01-27 17:42:54.563500"], ["updated_at", "2016-01-27 17:42:54.563500"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:42:54.565507"], ["updated_at", "2016-01-27 17:42:54.565507"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Coby Kohler"], ["job_title", "Human Intranet Engineer"], ["greetings", "Ab quibusdam ducimus soluta autem asperiores pariatur."], ["summary", "Eveniet omnis eaque similique. Quo dolorem magni voluptas. Libero qui pariatur placeat sit ab. Rem sapiente quibusdam quod."], ["key", "coby_kohler"], ["created_at", "2016-01-27 17:42:54.571643"], ["updated_at", "2016-01-27 17:42:54.571643"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:42:54.573988"], ["updated_at", "2016-01-27 17:42:54.573988"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Trudie Altenwerth"], ["job_title", "Chief Implementation Designer"], ["greetings", "Omnis vel iste occaecati magnam sunt illo ipsum."], ["summary", "In et aspernatur sint. Aut eius suscipit quis nisi eos in sint. Eligendi consectetur in optio. Repudiandae asperiores voluptatem maxime et."], ["key", "trudie_altenwerth"], ["created_at", "2016-01-27 17:42:54.578258"], ["updated_at", "2016-01-27 17:42:54.578258"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:42:54.580143"], ["updated_at", "2016-01-27 17:42:54.580143"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Mariela Bashirian"], ["job_title", "Principal Optimization Director"], ["greetings", "Fugit dolore molestiae sed."], ["summary", "Magni fugiat voluptatibus voluptas ipsum. Veritatis expedita reiciendis debitis. Dignissimos labore facilis."], ["key", "miss_mariela_bashirian"], ["created_at", "2016-01-27 17:42:54.584539"], ["updated_at", "2016-01-27 17:42:54.584539"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nostrum"], ["key", "nostrum"], ["created_at", "2016-01-27 17:42:54.588688"], ["updated_at", "2016-01-27 17:42:54.588688"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "hic"], ["key", "hic"], ["created_at", "2016-01-27 17:42:54.590591"], ["updated_at", "2016-01-27 17:42:54.590591"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wooden Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:42:54.599016"], ["updated_at", "2016-01-27 17:42:54.599016"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wooden Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:42:54.601143"], ["updated_at", "2016-01-27 17:42:54.601143"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Granite Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:42:54.602834"], ["updated_at", "2016-01-27 17:42:54.602834"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Linen Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:42:54.604957"], ["updated_at", "2016-01-27 17:42:54.604957"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Natalie Bosco"], ["job_title", "Forward Markets Manager"], ["greetings", "Deleniti nihil hic vel similique enim repellendus."], ["summary", "Architecto rem nesciunt non sunt nostrum doloribus. Ut rem velit possimus. Veniam hic laborum dolor."], ["key", "natalie_bosco"], ["created_at", "2016-01-27 17:42:54.627212"], ["updated_at", "2016-01-27 17:42:54.627212"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Aluminum Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:42:54.630988"], ["updated_at", "2016-01-27 17:42:54.630988"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Paper Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:42:54.633274"], ["updated_at", "2016-01-27 17:42:54.633274"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Bronze Keyboard"], ["site_id", 1], ["created_at", "2016-01-27 17:42:54.634909"], ["updated_at", "2016-01-27 17:42:54.634909"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Leather Bottle"], ["site_id", 1], ["created_at", "2016-01-27 17:42:54.636478"], ["updated_at", "2016-01-27 17:42:54.636478"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (23.6ms) Portfolio::SiteItemCategory Load (0.3ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (235.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (314.0ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Martina Fahey"], ["job_title", "Regional Interactions Architect"], ["greetings", "Laboriosam deserunt dolorem architecto voluptas qui minus rerum."], ["summary", "Vel perferendis est hic facilis facere et est. Autem qui iusto eum odit ut. Voluptatum atque necessitatibus. Mollitia tenetur et eos earum ex ullam dolores."], ["key", "mr_martina_fahey"], ["created_at", "2016-01-27 17:42:54.977742"], ["updated_at", "2016-01-27 17:42:54.977742"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Silk Bench"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:42:54.982581"], ["updated_at", "2016-01-27 17:42:54.982581"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Iron Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:42:54.987093"], ["updated_at", "2016-01-27 17:42:54.987093"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Cotton Wallet"], ["site_id", 1], ["created_at", "2016-01-27 17:42:54.992041"], ["updated_at", "2016-01-27 17:42:54.992041"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Car"], ["site_id", 1], ["created_at", "2016-01-27 17:42:54.996257"], ["updated_at", "2016-01-27 17:42:54.996257"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (9.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (16.4ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Waylon Muller"], ["job_title", "Regional Paradigm Analyst"], ["greetings", "Magnam eligendi unde accusamus velit molestias sequi facere architecto."], ["summary", "Dolore eveniet voluptatem voluptas. Quia pariatur vitae voluptates aut. Incidunt voluptate aut voluptatem nemo omnis nisi et."], ["key", "ms_waylon_muller"], ["created_at", "2016-01-27 17:42:55.020902"], ["updated_at", "2016-01-27 17:42:55.020902"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 17:42:55.023207"], ["updated_at", "2016-01-27 17:42:55.023207"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-27 17:42:55.025231"], ["updated_at", "2016-01-27 17:42:55.025231"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Silk Car"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:42:55.028260"], ["updated_at", "2016-01-27 17:42:55.028260"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Copper Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:42:55.031076"], ["updated_at", "2016-01-27 17:42:55.031076"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Marble Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:42:55.035082"], ["updated_at", "2016-01-27 17:42:55.035082"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Leather Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:42:55.038844"], ["updated_at", "2016-01-27 17:42:55.038844"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (2.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (13.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (32.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kennedi Bednar"], ["job_title", "Dynamic Data Officer"], ["greetings", "Laborum quis magni aut nam ea quo."], ["summary", "Distinctio ut laborum rerum qui facere ut. Ut magni tempora placeat aut aspernatur. Quod consequatur iure excepturi id."], ["key", "kennedi_bednar"], ["created_at", "2016-01-27 17:42:55.080388"], ["updated_at", "2016-01-27 17:42:55.080388"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rem"], ["key", "rem"], ["created_at", "2016-01-27 17:42:55.082984"], ["updated_at", "2016-01-27 17:42:55.082984"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "autem"], ["key", "autem"], ["created_at", "2016-01-27 17:42:55.085497"], ["updated_at", "2016-01-27 17:42:55.085497"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wooden Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:42:55.088290"], ["updated_at", "2016-01-27 17:42:55.088290"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Steel Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:42:55.091295"], ["updated_at", "2016-01-27 17:42:55.091295"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Cotton Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:42:55.094425"], ["updated_at", "2016-01-27 17:42:55.094425"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Granite Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:42:55.097568"], ["updated_at", "2016-01-27 17:42:55.097568"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.1ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.9ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (25.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alejandrin Nienow"], ["job_title", "Dynamic Tactics Agent"], ["greetings", "Sit numquam repudiandae ut error laboriosam fuga pariatur."], ["summary", "Fuga quaerat quo est pariatur ipsa. Et dolor magnam occaecati ad. Aut accusamus dolorem. Est amet quae eos dolor similique."], ["key", "alejandrin_nienow"], ["created_at", "2016-01-27 17:42:55.133978"], ["updated_at", "2016-01-27 17:42:55.133978"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.2ms)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Luis Adams V"], ["job_title", "Human Configuration Executive"], ["greetings", "Voluptatem dolorum atque at asperiores."], ["summary", "Atque enim est at non delectus recusandae et. Eaque omnis similique aut perferendis sed non explicabo. Dicta minus sunt asperiores voluptates."], ["key", "luis_adams_v"], ["created_at", "2016-01-27 17:42:55.172061"], ["updated_at", "2016-01-27 17:42:55.172061"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (5.8ms)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Isabelle Herzog"], ["job_title", "Legacy Usability Specialist"], ["greetings", "Pariatur est odio et doloribus error velit neque vero."], ["summary", "Natus nulla aperiam sunt. Est eum beatae reprehenderit. Quo nemo eum eius quae voluptas ut officia."], ["key", "isabelle_herzog"], ["created_at", "2016-01-27 17:42:55.186696"], ["updated_at", "2016-01-27 17:42:55.186696"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 17:42:55.190537"], ["updated_at", "2016-01-27 17:42:55.190537"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "neque"], ["key", "neque"], ["created_at", "2016-01-27 17:42:55.196166"], ["updated_at", "2016-01-27 17:42:55.196166"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Silk Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:42:55.199016"], ["updated_at", "2016-01-27 17:42:55.199016"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Granite Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:42:55.201625"], ["updated_at", "2016-01-27 17:42:55.201625"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wool Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:42:55.204841"], ["updated_at", "2016-01-27 17:42:55.204841"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Granite Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:42:55.207219"], ["updated_at", "2016-01-27 17:42:55.207219"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.2ms)  (0.4ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (10.3ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (25.3ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jovan Hessel"], ["job_title", "Internal Accountability Designer"], ["greetings", "Aut laborum quasi alias numquam minus reiciendis omnis."], ["summary", "Cupiditate consequuntur molestias a in. Dolore nihil dolorem dignissimos fugit aut est. Est veniam amet ut. Aperiam sint sapiente a repellendus eum. Maiores consequuntur explicabo."], ["key", "jovan_hessel"], ["created_at", "2016-01-27 17:43:04.160517"], ["updated_at", "2016-01-27 17:43:04.160517"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:43:04.177131"], ["updated_at", "2016-01-27 17:43:04.177131"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kayla Thompson"], ["job_title", "International Infrastructure Manager"], ["greetings", "Qui quis excepturi vitae perferendis ratione."], ["summary", "Voluptatem eos officiis autem ad hic ducimus ratione. Quaerat et maiores perspiciatis veritatis voluptates. Tempora autem eos corporis omnis aut tempore dolores. Aliquid aspernatur soluta quod perferendis. Et debitis deleniti enim."], ["key", "kayla_thompson"], ["created_at", "2016-01-27 17:43:04.182839"], ["updated_at", "2016-01-27 17:43:04.182839"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:43:04.184682"], ["updated_at", "2016-01-27 17:43:04.184682"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Amari Bradtke"], ["job_title", "Investor Mobility Executive"], ["greetings", "Sunt veniam officia earum quibusdam ab."], ["summary", "Ducimus eveniet exercitationem qui. Eum reprehenderit qui quod. Aut non qui nihil."], ["key", "amari_bradtke"], ["created_at", "2016-01-27 17:43:04.187184"], ["updated_at", "2016-01-27 17:43:04.187184"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:43:04.188511"], ["updated_at", "2016-01-27 17:43:04.188511"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Chesley Schroeder MD"], ["job_title", "National Security Developer"], ["greetings", "Sunt odit minus at sed vero."], ["summary", "Autem sed dolorem. Quae aliquam unde et repellendus illum ea. Ullam enim nobis. Ea ullam doloremque dicta praesentium provident ipsum commodi. Qui reprehenderit ut aut maxime aperiam."], ["key", "chesley_schroeder_md"], ["created_at", "2016-01-27 17:43:04.194745"], ["updated_at", "2016-01-27 17:43:04.194745"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:43:04.196742"], ["updated_at", "2016-01-27 17:43:04.196742"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Meaghan Bogan"], ["job_title", "Principal Integration Representative"], ["greetings", "Amet minima odit neque quis vel similique iusto."], ["summary", "Aut laboriosam dolore reprehenderit sit. Sapiente rerum omnis. Laboriosam accusantium nam debitis saepe beatae. Minus eaque quisquam quibusdam ut a asperiores voluptatibus."], ["key", "meaghan_bogan"], ["created_at", "2016-01-27 17:43:04.201042"], ["updated_at", "2016-01-27 17:43:04.201042"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:43:04.203406"], ["updated_at", "2016-01-27 17:43:04.203406"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lucious Satterfield"], ["job_title", "Customer Security Director"], ["greetings", "Consectetur esse corporis et facere et inventore voluptas."], ["summary", "Consectetur iure id commodi aut qui et. Natus repellat recusandae illum enim. Quisquam quibusdam repellendus perspiciatis. Reprehenderit amet labore debitis dolor aut. Sunt autem earum mollitia assumenda veniam exercitationem."], ["key", "lucious_satterfield"], ["created_at", "2016-01-27 17:43:04.207836"], ["updated_at", "2016-01-27 17:43:04.207836"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:43:04.209704"], ["updated_at", "2016-01-27 17:43:04.209704"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Micheal Williamson V"], ["job_title", "Product Interactions Producer"], ["greetings", "Omnis et consectetur exercitationem."], ["summary", "Ipsa et a ratione. Possimus iusto dolorum. Cum eos ipsa. Sunt quibusdam voluptate beatae ut architecto eaque."], ["key", "micheal_williamson_v"], ["created_at", "2016-01-27 17:43:04.213873"], ["updated_at", "2016-01-27 17:43:04.213873"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "deleniti"], ["key", "deleniti"], ["created_at", "2016-01-27 17:43:04.219386"], ["updated_at", "2016-01-27 17:43:04.219386"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "debitis"], ["key", "debitis"], ["created_at", "2016-01-27 17:43:04.222747"], ["updated_at", "2016-01-27 17:43:04.222747"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Linen Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:43:04.231154"], ["updated_at", "2016-01-27 17:43:04.231154"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Concrete Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:43:04.233353"], ["updated_at", "2016-01-27 17:43:04.233353"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wooden Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:43:04.235248"], ["updated_at", "2016-01-27 17:43:04.235248"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Bronze Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:43:04.236991"], ["updated_at", "2016-01-27 17:43:04.236991"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jed Stamm"], ["job_title", "Customer Security Liaison"], ["greetings", "Ea natus molestiae omnis tenetur voluptas veritatis."], ["summary", "Accusamus quod esse rerum tempora voluptas et quam. Sint sed quas assumenda illo qui aut omnis. Et et magnam ut ut ut in. Hic non amet saepe quo non a. Dolorem rerum quidem aut consequatur cumque autem consectetur."], ["key", "jed_stamm"], ["created_at", "2016-01-27 17:43:04.262857"], ["updated_at", "2016-01-27 17:43:04.262857"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Granite Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:43:04.264987"], ["updated_at", "2016-01-27 17:43:04.264987"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Marble Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:43:04.267065"], ["updated_at", "2016-01-27 17:43:04.267065"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Bag"], ["site_id", 1], ["created_at", "2016-01-27 17:43:04.268901"], ["updated_at", "2016-01-27 17:43:04.268901"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Steel Car"], ["site_id", 1], ["created_at", "2016-01-27 17:43:04.270966"], ["updated_at", "2016-01-27 17:43:04.270966"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (9.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (22.8ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (245.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (322.0ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kim Stehr"], ["job_title", "Forward Applications Analyst"], ["greetings", "Voluptatem pariatur rerum consequatur."], ["summary", "At ex facere cupiditate officia quod sint molestiae. Aut amet et voluptate. Minima quia in et alias aperiam."], ["key", "kim_stehr"], ["created_at", "2016-01-27 17:43:04.616348"], ["updated_at", "2016-01-27 17:43:04.616348"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Bronze Bench"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:43:04.620772"], ["updated_at", "2016-01-27 17:43:04.620772"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Copper Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:43:04.624954"], ["updated_at", "2016-01-27 17:43:04.624954"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Paper Keyboard"], ["site_id", 1], ["created_at", "2016-01-27 17:43:04.628400"], ["updated_at", "2016-01-27 17:43:04.628400"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Linen Hat"], ["site_id", 1], ["created_at", "2016-01-27 17:43:04.631612"], ["updated_at", "2016-01-27 17:43:04.631612"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.9ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (8.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lula Lesch"], ["job_title", "Human Configuration Engineer"], ["greetings", "Harum incidunt recusandae consequatur delectus eum dolore enim."], ["summary", "Earum et tenetur amet possimus vel dicta. Nemo magni ut quis consequuntur dicta aut. Consectetur adipisci quod quasi nulla fugiat pariatur. Consequatur aperiam omnis ratione."], ["key", "lula_lesch"], ["created_at", "2016-01-27 17:43:04.657558"], ["updated_at", "2016-01-27 17:43:04.657558"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "recusandae"], ["key", "recusandae"], ["created_at", "2016-01-27 17:43:04.660213"], ["updated_at", "2016-01-27 17:43:04.660213"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quae"], ["key", "quae"], ["created_at", "2016-01-27 17:43:04.662621"], ["updated_at", "2016-01-27 17:43:04.662621"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Marble Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:43:04.664612"], ["updated_at", "2016-01-27 17:43:04.664612"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Cotton Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:43:04.666757"], ["updated_at", "2016-01-27 17:43:04.666757"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Granite Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:43:04.668761"], ["updated_at", "2016-01-27 17:43:04.668761"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Bronze Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:43:04.670947"], ["updated_at", "2016-01-27 17:43:04.670947"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.4ms)  (0.7ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (26.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dino Jacobi"], ["job_title", "Lead Directives Developer"], ["greetings", "Qui aliquam molestiae harum et eos qui."], ["summary", "Asperiores eaque et quo. Assumenda repudiandae doloribus maiores. Quia amet voluptatem eligendi. Autem explicabo perspiciatis eligendi et. Doloribus et maxime est molestias."], ["key", "dino_jacobi"], ["created_at", "2016-01-27 17:43:04.714119"], ["updated_at", "2016-01-27 17:43:04.714119"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 17:43:04.717022"], ["updated_at", "2016-01-27 17:43:04.717022"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "adipisci"], ["key", "adipisci"], ["created_at", "2016-01-27 17:43:04.719139"], ["updated_at", "2016-01-27 17:43:04.719139"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:43:04.722726"], ["updated_at", "2016-01-27 17:43:04.722726"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wool Plate"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:43:04.726213"], ["updated_at", "2016-01-27 17:43:04.726213"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wooden Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:43:04.728877"], ["updated_at", "2016-01-27 17:43:04.728877"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Bronze Bag"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:43:04.731389"], ["updated_at", "2016-01-27 17:43:04.731389"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.3ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (22.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Isadore Dietrich"], ["job_title", "Global Program Specialist"], ["greetings", "Eum magni non consequatur."], ["summary", "Dignissimos omnis alias repellendus. Dolorem qui qui aspernatur perspiciatis sit. Distinctio exercitationem esse vero. Maxime et error modi."], ["key", "isadore_dietrich"], ["created_at", "2016-01-27 17:43:04.763940"], ["updated_at", "2016-01-27 17:43:04.763940"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (14.7ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Magali Walter I"], ["job_title", "Global Usability Architect"], ["greetings", "Minima eum quia facilis deleniti ut itaque cumque."], ["summary", "Minus explicabo aperiam aspernatur sit maiores sint. Fuga consequatur quis sapiente. Quia nesciunt consequatur ut sunt dolor quam a. Nihil qui illo."], ["key", "magali_walter_i"], ["created_at", "2016-01-27 17:43:04.796883"], ["updated_at", "2016-01-27 17:43:04.796883"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (5.9ms)  (0.3ms) rollback transaction  (0.8ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bella Keebler DVM"], ["job_title", "National Mobility Director"], ["greetings", "Sit quidem et optio fugiat nisi sed sunt quo."], ["summary", "Optio sequi asperiores voluptates explicabo deleniti veritatis. Modi et fugit perferendis sequi ut aspernatur. Temporibus nulla ullam dolorum architecto cupiditate veritatis. Culpa voluptatibus dolor et."], ["key", "bella_keebler_dvm"], ["created_at", "2016-01-27 17:43:04.813797"], ["updated_at", "2016-01-27 17:43:04.813797"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "expedita"], ["key", "expedita"], ["created_at", "2016-01-27 17:43:04.816867"], ["updated_at", "2016-01-27 17:43:04.816867"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 17:43:04.819763"], ["updated_at", "2016-01-27 17:43:04.819763"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Aluminum Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:43:04.823372"], ["updated_at", "2016-01-27 17:43:04.823372"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:43:04.827569"], ["updated_at", "2016-01-27 17:43:04.827569"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Granite Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:43:04.831124"], ["updated_at", "2016-01-27 17:43:04.831124"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Leather Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:43:04.833908"], ["updated_at", "2016-01-27 17:43:04.833908"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (7.9ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (22.0ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Garett Abshire V"], ["job_title", "Regional Assurance Agent"], ["greetings", "Est ea dolores ex."], ["summary", "Modi qui ad corporis similique itaque iusto sequi. Sequi tempore dolorum quia dolores aperiam. Nemo temporibus et. Velit dolore dolorem recusandae vero quia. Neque fugit explicabo eos voluptatem ut."], ["key", "garett_abshire_v"], ["created_at", "2016-01-27 17:45:16.602460"], ["updated_at", "2016-01-27 17:45:16.602460"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsa"], ["key", "ipsa"], ["created_at", "2016-01-27 17:45:16.608959"], ["updated_at", "2016-01-27 17:45:16.608959"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "commodi"], ["key", "commodi"], ["created_at", "2016-01-27 17:45:16.610661"], ["updated_at", "2016-01-27 17:45:16.610661"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Concrete Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:45:16.625375"], ["updated_at", "2016-01-27 17:45:16.625375"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Silk Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:45:16.627395"], ["updated_at", "2016-01-27 17:45:16.627395"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Silk Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:45:16.629166"], ["updated_at", "2016-01-27 17:45:16.629166"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Copper Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:45:16.630772"], ["updated_at", "2016-01-27 17:45:16.630772"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Adrain Stokes"], ["job_title", "Corporate Data Strategist"], ["greetings", "Voluptatem corporis dolores placeat saepe voluptatem maxime."], ["summary", "Laboriosam alias voluptas hic qui quos. Voluptatem magni mollitia occaecati consequatur aut. Voluptatem omnis sit voluptatem voluptatum iusto quia tempora. Cum iste delectus ad fugit vel molestiae."], ["key", "adrain_stokes"], ["created_at", "2016-01-27 17:45:22.460585"], ["updated_at", "2016-01-27 17:45:22.460585"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:45:22.477498"], ["updated_at", "2016-01-27 17:45:22.477498"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Anne Prosacco"], ["job_title", "Dynamic Branding Liaison"], ["greetings", "Veritatis harum ea non voluptatibus fugiat aliquid."], ["summary", "Eos perferendis molestias ab eaque. Quod praesentium ut earum qui. Recusandae unde cum rem porro autem distinctio nihil. Animi ut voluptas voluptates commodi exercitationem ab est."], ["key", "anne_prosacco"], ["created_at", "2016-01-27 17:45:22.483424"], ["updated_at", "2016-01-27 17:45:22.483424"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:45:22.485468"], ["updated_at", "2016-01-27 17:45:22.485468"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Eloise Torphy"], ["job_title", "Chief Implementation Facilitator"], ["greetings", "Iure ut quo magnam ea provident."], ["summary", "Porro accusantium illo quisquam eligendi. Est eius et. Vero cum ut sunt eveniet molestiae dicta omnis."], ["key", "eloise_torphy"], ["created_at", "2016-01-27 17:45:22.490973"], ["updated_at", "2016-01-27 17:45:22.490973"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:45:22.493298"], ["updated_at", "2016-01-27 17:45:22.493298"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Keira Swift"], ["job_title", "Dynamic Security Representative"], ["greetings", "Et consectetur ad exercitationem."], ["summary", "Voluptas facere consequatur numquam quos et. Sapiente ut omnis vitae est consequatur. Tempora harum voluptates iusto delectus dolore. Quo quidem eaque saepe excepturi in enim est."], ["key", "keira_swift"], ["created_at", "2016-01-27 17:45:22.499400"], ["updated_at", "2016-01-27 17:45:22.499400"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:45:22.501388"], ["updated_at", "2016-01-27 17:45:22.501388"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Eugene Abshire IV"], ["job_title", "Human Applications Orchestrator"], ["greetings", "Qui commodi velit fugit ut dolorem ut."], ["summary", "Delectus facilis sit rerum. Dolorem quam id nulla. Cupiditate itaque voluptatem repellat veritatis voluptatibus consequatur. Ut exercitationem reprehenderit."], ["key", "eugene_abshire_iv"], ["created_at", "2016-01-27 17:45:22.505359"], ["updated_at", "2016-01-27 17:45:22.505359"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:45:22.507280"], ["updated_at", "2016-01-27 17:45:22.507280"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alexane Schiller"], ["job_title", "Dynamic Factors Liaison"], ["greetings", "Iusto perspiciatis aut ut ipsam dolore eveniet."], ["summary", "Ut doloribus perferendis aut. Rerum in dolorem doloribus ex reiciendis adipisci nisi. Delectus alias quis suscipit doloremque corrupti voluptatem occaecati."], ["key", "alexane_schiller"], ["created_at", "2016-01-27 17:45:22.511471"], ["updated_at", "2016-01-27 17:45:22.511471"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:45:22.513638"], ["updated_at", "2016-01-27 17:45:22.513638"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Wava O'Keefe"], ["job_title", "Senior Infrastructure Associate"], ["greetings", "Qui sed atque ducimus voluptas."], ["summary", "Velit facere similique voluptas vel. Commodi incidunt provident aut nisi et aliquam. Sint odit sunt."], ["key", "wava_o_keefe"], ["created_at", "2016-01-27 17:45:22.517750"], ["updated_at", "2016-01-27 17:45:22.517750"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptas"], ["key", "voluptas"], ["created_at", "2016-01-27 17:45:22.525905"], ["updated_at", "2016-01-27 17:45:22.525905"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-27 17:45:22.528783"], ["updated_at", "2016-01-27 17:45:22.528783"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Copper Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:45:22.537029"], ["updated_at", "2016-01-27 17:45:22.537029"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Steel Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:45:22.539762"], ["updated_at", "2016-01-27 17:45:22.539762"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Leather Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:45:22.542017"], ["updated_at", "2016-01-27 17:45:22.542017"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Silk Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:45:22.544105"], ["updated_at", "2016-01-27 17:45:22.544105"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cleta Ruecker"], ["job_title", "Chief Quality Producer"], ["greetings", "Quidem provident porro sint vel et qui."], ["summary", "Exercitationem harum veniam ab quae. Recusandae iste quas. Est corporis enim. Placeat praesentium sit quae velit. Rerum et est."], ["key", "cleta_ruecker"], ["created_at", "2016-01-27 17:45:22.570968"], ["updated_at", "2016-01-27 17:45:22.570968"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Concrete Bench"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:45:22.573138"], ["updated_at", "2016-01-27 17:45:22.573138"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Copper Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:45:22.576164"], ["updated_at", "2016-01-27 17:45:22.576164"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Plastic Chair"], ["site_id", 1], ["created_at", "2016-01-27 17:45:22.578138"], ["updated_at", "2016-01-27 17:45:22.578138"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Plastic Bench"], ["site_id", 1], ["created_at", "2016-01-27 17:45:22.579678"], ["updated_at", "2016-01-27 17:45:22.579678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (22.9ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (237.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (319.9ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Verla Schamberger"], ["job_title", "Future Response Associate"], ["greetings", "Hic vero assumenda reprehenderit velit qui laudantium voluptatem."], ["summary", "Est consequatur voluptatem aperiam vel molestias. Animi suscipit delectus corrupti cupiditate sit est. Aspernatur incidunt velit sit quisquam commodi aut consectetur. Deserunt reprehenderit quam."], ["key", "verla_schamberger"], ["created_at", "2016-01-27 17:45:22.922468"], ["updated_at", "2016-01-27 17:45:22.922468"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Leather Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:45:22.927329"], ["updated_at", "2016-01-27 17:45:22.927329"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Steel Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:45:22.931649"], ["updated_at", "2016-01-27 17:45:22.931649"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Marble Watch"], ["site_id", 1], ["created_at", "2016-01-27 17:45:22.935413"], ["updated_at", "2016-01-27 17:45:22.935413"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Rubber Watch"], ["site_id", 1], ["created_at", "2016-01-27 17:45:22.939059"], ["updated_at", "2016-01-27 17:45:22.939059"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (13.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mariane Cormier"], ["job_title", "District Optimization Manager"], ["greetings", "Consequatur libero at sint consequuntur."], ["summary", "Voluptas enim quibusdam perspiciatis delectus quia aliquam. Qui eos sit. Sit a laudantium quia repudiandae est. Voluptas delectus occaecati saepe vero. Velit et similique."], ["key", "mariane_cormier"], ["created_at", "2016-01-27 17:45:22.974128"], ["updated_at", "2016-01-27 17:45:22.974128"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quibusdam"], ["key", "quibusdam"], ["created_at", "2016-01-27 17:45:22.978950"], ["updated_at", "2016-01-27 17:45:22.978950"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "omnis"], ["key", "omnis"], ["created_at", "2016-01-27 17:45:22.982821"], ["updated_at", "2016-01-27 17:45:22.982821"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Marble Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:45:22.987106"], ["updated_at", "2016-01-27 17:45:22.987106"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Bronze Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:45:22.992639"], ["updated_at", "2016-01-27 17:45:22.992639"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Cotton Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:45:22.996355"], ["updated_at", "2016-01-27 17:45:22.996355"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Marble Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:45:22.998482"], ["updated_at", "2016-01-27 17:45:22.998482"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.0ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (10.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.2ms)  (1.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (28.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Maverick Upton"], ["job_title", "Product Solutions Engineer"], ["greetings", "Qui est dolores quaerat earum at."], ["summary", "Id quia est. Ullam deleniti quis quos odio ad. Ea ducimus voluptatem."], ["key", "maverick_upton"], ["created_at", "2016-01-27 17:45:23.036002"], ["updated_at", "2016-01-27 17:45:23.036002"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "maxime"], ["key", "maxime"], ["created_at", "2016-01-27 17:45:23.045078"], ["updated_at", "2016-01-27 17:45:23.045078"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consequatur"], ["key", "consequatur"], ["created_at", "2016-01-27 17:45:23.047066"], ["updated_at", "2016-01-27 17:45:23.047066"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wooden Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:45:23.049544"], ["updated_at", "2016-01-27 17:45:23.049544"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Concrete Plate"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:45:23.053999"], ["updated_at", "2016-01-27 17:45:23.053999"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:45:23.056770"], ["updated_at", "2016-01-27 17:45:23.056770"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:45:23.060652"], ["updated_at", "2016-01-27 17:45:23.060652"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Noemy Wolff"], ["job_title", "Legacy Interactions Developer"], ["greetings", "Illum quisquam deleniti et est impedit."], ["summary", "Et esse optio minima perferendis aperiam. Occaecati enim eos veritatis ut eveniet ducimus. Qui laboriosam cum eligendi aliquam quo molestiae. Aperiam magnam quasi iste et consequuntur velit."], ["key", "noemy_wolff"], ["created_at", "2016-01-27 17:45:23.092124"], ["updated_at", "2016-01-27 17:45:23.092124"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (12.4ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Thurman Schroeder"], ["job_title", "Customer Markets Engineer"], ["greetings", "Asperiores deleniti et sit porro."], ["summary", "Ut libero dolorem consequuntur excepturi. Praesentium occaecati non necessitatibus. Voluptas odit et nihil."], ["key", "thurman_schroeder"], ["created_at", "2016-01-27 17:45:23.124106"], ["updated_at", "2016-01-27 17:45:23.124106"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.9ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (5.4ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Thora Marvin"], ["job_title", "Principal Functionality Architect"], ["greetings", "Omnis asperiores hic necessitatibus."], ["summary", "Dolorem vitae error nemo ullam in saepe. Asperiores dolorum quas et hic dignissimos atque. Necessitatibus et amet ex. Sed velit quasi totam dolores."], ["key", "thora_marvin"], ["created_at", "2016-01-27 17:45:23.143511"], ["updated_at", "2016-01-27 17:45:23.143511"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quo"], ["key", "quo"], ["created_at", "2016-01-27 17:45:23.146075"], ["updated_at", "2016-01-27 17:45:23.146075"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "similique"], ["key", "similique"], ["created_at", "2016-01-27 17:45:23.149555"], ["updated_at", "2016-01-27 17:45:23.149555"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Granite Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:45:23.152949"], ["updated_at", "2016-01-27 17:45:23.152949"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wool Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:45:23.157632"], ["updated_at", "2016-01-27 17:45:23.157632"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wooden Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:45:23.161850"], ["updated_at", "2016-01-27 17:45:23.161850"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wooden Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:45:23.164665"], ["updated_at", "2016-01-27 17:45:23.164665"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (6.3ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (28.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Dagmar Ferry"], ["job_title", "Regional Identity Liaison"], ["greetings", "Dolor aut alias veniam facilis est non."], ["summary", "Et dolores consequatur quo. Quos fugit enim sequi corrupti fugiat assumenda. Rerum quis ipsam vel omnis ullam. Voluptas reprehenderit doloremque perspiciatis. Nesciunt dolorem facilis deleniti."], ["key", "miss_dagmar_ferry"], ["created_at", "2016-01-27 17:50:03.538576"], ["updated_at", "2016-01-27 17:50:03.538576"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:50:03.555669"], ["updated_at", "2016-01-27 17:50:03.555669"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kendall Flatley Jr."], ["job_title", "Direct Communications Specialist"], ["greetings", "Voluptatem aperiam ea blanditiis et soluta sint enim voluptatibus."], ["summary", "Quam exercitationem accusamus quis ea alias aut. Sequi et possimus rerum et quas illum quia. Provident aut soluta ut enim et architecto nostrum. Magni dolores eos. Culpa commodi dolor deserunt recusandae."], ["key", "kendall_flatley_jr"], ["created_at", "2016-01-27 17:50:03.561415"], ["updated_at", "2016-01-27 17:50:03.561415"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:50:03.563181"], ["updated_at", "2016-01-27 17:50:03.563181"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lisandro Schultz"], ["job_title", "Human Assurance Administrator"], ["greetings", "Consectetur nesciunt aliquam aut ea minus eveniet pariatur."], ["summary", "Laboriosam vel quae dolores dignissimos. Qui doloremque eveniet sunt libero sit quia. Excepturi dolor fuga ea. Vel reiciendis a ipsam."], ["key", "lisandro_schultz"], ["created_at", "2016-01-27 17:50:03.565960"], ["updated_at", "2016-01-27 17:50:03.565960"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:50:03.567371"], ["updated_at", "2016-01-27 17:50:03.567371"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sonia Bosco"], ["job_title", "International Markets Liaison"], ["greetings", "Blanditiis quae voluptas voluptatem."], ["summary", "Dolor et eius suscipit voluptatem qui dolorem non. Cupiditate sit voluptatum incidunt laborum est voluptas non. Natus porro sunt eligendi quasi. Nemo ex totam provident qui officiis architecto debitis."], ["key", "sonia_bosco"], ["created_at", "2016-01-27 17:50:03.574715"], ["updated_at", "2016-01-27 17:50:03.574715"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:50:03.576940"], ["updated_at", "2016-01-27 17:50:03.576940"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Audreanne Murphy"], ["job_title", "Dynamic Accounts Officer"], ["greetings", "Eveniet nihil fuga totam sit."], ["summary", "Et quod sed est dolor suscipit quia. Aut non blanditiis. Voluptate vel officiis."], ["key", "audreanne_murphy"], ["created_at", "2016-01-27 17:50:03.580864"], ["updated_at", "2016-01-27 17:50:03.580864"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:50:03.582620"], ["updated_at", "2016-01-27 17:50:03.582620"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Kelley Daniel"], ["job_title", "Legacy Solutions Director"], ["greetings", "Eaque rerum quis totam minima deserunt enim fugit libero."], ["summary", "Non vel sunt. Atque laudantium ut amet. Quo et adipisci magni dolor."], ["key", "mr_kelley_daniel"], ["created_at", "2016-01-27 17:50:03.586513"], ["updated_at", "2016-01-27 17:50:03.586513"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:50:03.588572"], ["updated_at", "2016-01-27 17:50:03.588572"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Quincy Yundt"], ["job_title", "Dynamic Research Officer"], ["greetings", "Consequatur voluptatibus quod hic."], ["summary", "Eaque dolor deserunt neque. Sed occaecati sint quis autem nisi eius non. Saepe illum voluptatum magni quam. Ut error quisquam aut rerum."], ["key", "quincy_yundt"], ["created_at", "2016-01-27 17:50:03.592769"], ["updated_at", "2016-01-27 17:50:03.592769"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-27 17:50:03.597887"], ["updated_at", "2016-01-27 17:50:03.597887"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 17:50:03.599619"], ["updated_at", "2016-01-27 17:50:03.599619"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Concrete Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:50:03.607986"], ["updated_at", "2016-01-27 17:50:03.607986"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Plastic Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:50:03.610154"], ["updated_at", "2016-01-27 17:50:03.610154"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Silk Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:50:03.612185"], ["updated_at", "2016-01-27 17:50:03.612185"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Granite Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:50:03.613822"], ["updated_at", "2016-01-27 17:50:03.613822"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Iva Hilpert"], ["job_title", "Human Markets Strategist"], ["greetings", "Alias sint qui voluptates."], ["summary", "Eum unde distinctio qui. Totam omnis quaerat et rerum. Consectetur fugiat dignissimos molestiae ut magnam. Aut soluta qui."], ["key", "iva_hilpert"], ["created_at", "2016-01-27 17:50:03.638363"], ["updated_at", "2016-01-27 17:50:03.638363"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fugit"], ["key", "fugit"], ["created_at", "2016-01-27 17:50:03.640256"], ["updated_at", "2016-01-27 17:50:03.640256"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "commodi"], ["key", "commodi"], ["created_at", "2016-01-27 17:50:03.641828"], ["updated_at", "2016-01-27 17:50:03.641828"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Concrete Computer"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:50:03.643591"], ["updated_at", "2016-01-27 17:50:03.643591"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wooden Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:50:03.645311"], ["updated_at", "2016-01-27 17:50:03.645311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Iron Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:50:03.647287"], ["updated_at", "2016-01-27 17:50:03.647287"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wool Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:50:03.648856"], ["updated_at", "2016-01-27 17:50:03.648856"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Meaghan Corwin I"], ["job_title", "Dynamic Quality Liaison"], ["greetings", "Aut ut et fuga sed voluptate perferendis molestiae."], ["summary", "Repellendus maiores ducimus inventore modi tempora et quidem. Blanditiis enim adipisci quas delectus eum laborum. Eum atque quis sequi. Itaque omnis aut voluptatem repellendus exercitationem eveniet qui."], ["key", "meaghan_corwin_i"], ["created_at", "2016-01-27 17:50:03.676815"], ["updated_at", "2016-01-27 17:50:03.676815"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Cotton Bench"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:50:03.679048"], ["updated_at", "2016-01-27 17:50:03.679048"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Concrete Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:50:03.681205"], ["updated_at", "2016-01-27 17:50:03.681205"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Linen Bench"], ["site_id", 1], ["created_at", "2016-01-27 17:50:03.682819"], ["updated_at", "2016-01-27 17:50:03.682819"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Paper Keyboard"], ["site_id", 1], ["created_at", "2016-01-27 17:50:03.684162"], ["updated_at", "2016-01-27 17:50:03.684162"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.9ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.3ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (232.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (298.9ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jimmy Runte"], ["job_title", "Human Data Producer"], ["greetings", "Sed ut dolore rerum commodi quis et."], ["summary", "Consectetur eius est expedita. Ea occaecati quis incidunt eum impedit. Nulla pariatur hic voluptatem. Rem nulla veniam aut aspernatur sit ipsum est. In eum saepe."], ["key", "jimmy_runte"], ["created_at", "2016-01-27 17:50:04.007485"], ["updated_at", "2016-01-27 17:50:04.007485"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Bronze Wallet"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:50:04.012570"], ["updated_at", "2016-01-27 17:50:04.012570"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Paper Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:50:04.016924"], ["updated_at", "2016-01-27 17:50:04.016924"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wool Gloves"], ["site_id", 1], ["created_at", "2016-01-27 17:50:04.020505"], ["updated_at", "2016-01-27 17:50:04.020505"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Bronze Bottle"], ["site_id", 1], ["created_at", "2016-01-27 17:50:04.024489"], ["updated_at", "2016-01-27 17:50:04.024489"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.3ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nichole Gutkowski"], ["job_title", "Chief Assurance Agent"], ["greetings", "Placeat est asperiores illo consequatur eveniet non incidunt."], ["summary", "Praesentium reiciendis molestias ut aliquam necessitatibus. Dolorem fugiat beatae delectus est vel rem aut. Et qui rerum assumenda voluptas consequatur voluptatem officiis."], ["key", "nichole_gutkowski"], ["created_at", "2016-01-27 17:50:04.054709"], ["updated_at", "2016-01-27 17:50:04.054709"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 17:50:04.059293"], ["updated_at", "2016-01-27 17:50:04.059293"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "deserunt"], ["key", "deserunt"], ["created_at", "2016-01-27 17:50:04.061949"], ["updated_at", "2016-01-27 17:50:04.061949"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Leather Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:50:04.064755"], ["updated_at", "2016-01-27 17:50:04.064755"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Granite Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:50:04.068575"], ["updated_at", "2016-01-27 17:50:04.068575"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.9ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Aluminum Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:50:04.073122"], ["updated_at", "2016-01-27 17:50:04.073122"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Aluminum Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:50:04.076467"], ["updated_at", "2016-01-27 17:50:04.076467"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.5ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.7ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Clotilde Reichel"], ["job_title", "Human Brand Orchestrator"], ["greetings", "Ducimus voluptatem quasi iure quos tenetur."], ["summary", "Sed aut maiores. Officia autem illo quia omnis repellat. Est sequi sed et similique cupiditate. Veniam iure sit dicta totam quidem. Ut enim consequatur qui aperiam sit exercitationem."], ["key", "clotilde_reichel"], ["created_at", "2016-01-27 17:50:04.113336"], ["updated_at", "2016-01-27 17:50:04.113336"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "maiores"], ["key", "maiores"], ["created_at", "2016-01-27 17:50:04.115814"], ["updated_at", "2016-01-27 17:50:04.115814"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-27 17:50:04.117790"], ["updated_at", "2016-01-27 17:50:04.117790"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Rubber Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:50:04.120679"], ["updated_at", "2016-01-27 17:50:04.120679"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Silk Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:50:04.124240"], ["updated_at", "2016-01-27 17:50:04.124240"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wooden Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:50:04.127308"], ["updated_at", "2016-01-27 17:50:04.127308"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wooden Bag"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:50:04.130918"], ["updated_at", "2016-01-27 17:50:04.130918"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.7ms)  (0.3ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (17.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Marian Turcotte"], ["job_title", "Internal Response Associate"], ["greetings", "Quia quia debitis qui."], ["summary", "Quo voluptatibus veritatis officiis autem autem tenetur necessitatibus. Amet dicta optio itaque ut et. Iste velit suscipit qui."], ["key", "marian_turcotte"], ["created_at", "2016-01-27 17:50:04.160293"], ["updated_at", "2016-01-27 17:50:04.160293"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (16.5ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Catalina Prohaska"], ["job_title", "Corporate Directives Coordinator"], ["greetings", "Rem molestiae alias ea."], ["summary", "Quos quisquam molestiae alias et. Saepe soluta illo. Sunt dolores quam delectus non quos in fugiat. Aperiam eos officia. Deleniti sed tempora possimus fuga."], ["key", "catalina_prohaska"], ["created_at", "2016-01-27 17:50:04.196712"], ["updated_at", "2016-01-27 17:50:04.196712"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Otto Roberts"], ["job_title", "Central Operations Associate"], ["greetings", "Delectus illo id deserunt ea vel."], ["summary", "Repudiandae voluptatum dolor ratione quasi. Velit odio cum ut illo expedita tempore. Illum quia voluptate fuga. Voluptas fugiat quos eum. Et neque est tenetur quas illum."], ["key", "otto_roberts"], ["created_at", "2016-01-27 17:50:04.210773"], ["updated_at", "2016-01-27 17:50:04.210773"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 17:50:04.213111"], ["updated_at", "2016-01-27 17:50:04.213111"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "officiis"], ["key", "officiis"], ["created_at", "2016-01-27 17:50:04.215090"], ["updated_at", "2016-01-27 17:50:04.215090"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Linen Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:50:04.218440"], ["updated_at", "2016-01-27 17:50:04.218440"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Leather Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:50:04.221723"], ["updated_at", "2016-01-27 17:50:04.221723"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Bronze Clock"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:50:04.232104"], ["updated_at", "2016-01-27 17:50:04.232104"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Marble Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:50:04.233777"], ["updated_at", "2016-01-27 17:50:04.233777"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (3.6ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (19.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Abbigail Torp"], ["job_title", "Product Metrics Consultant"], ["greetings", "Quaerat non omnis ad sed officia eligendi quibusdam."], ["summary", "Ab assumenda necessitatibus molestiae distinctio. Quo quisquam dolor qui quis doloremque. Est in et debitis rerum. Rerum iusto quaerat ducimus. Fuga aspernatur quam nisi laudantium sed quis voluptates."], ["key", "abbigail_torp"], ["created_at", "2016-01-27 17:50:27.883756"], ["updated_at", "2016-01-27 17:50:27.883756"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:50:27.900544"], ["updated_at", "2016-01-27 17:50:27.900544"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Maybell Wilderman"], ["job_title", "Future Identity Strategist"], ["greetings", "Ex sunt ut recusandae delectus architecto eius quo quod."], ["summary", "Corporis sapiente natus reprehenderit architecto ut. Minima iusto dolore reprehenderit eum odio quisquam. Provident omnis enim. Temporibus aspernatur veniam est ut vel magni soluta. Debitis ut sit perferendis mollitia excepturi et."], ["key", "mrs_maybell_wilderman"], ["created_at", "2016-01-27 17:50:27.906958"], ["updated_at", "2016-01-27 17:50:27.906958"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:50:27.909002"], ["updated_at", "2016-01-27 17:50:27.909002"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jermaine Hammes"], ["job_title", "Principal Usability Technician"], ["greetings", "Aut et ad aut cum nihil delectus error sed."], ["summary", "Nihil repudiandae aut facere nobis harum perspiciatis voluptatem. Nihil omnis eius et maxime aspernatur quasi laudantium. Soluta ab labore qui magni eum dolorem."], ["key", "jermaine_hammes"], ["created_at", "2016-01-27 17:50:27.911870"], ["updated_at", "2016-01-27 17:50:27.911870"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:50:27.913394"], ["updated_at", "2016-01-27 17:50:27.913394"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Michaela Spencer"], ["job_title", "Product Security Architect"], ["greetings", "Illum doloribus sit sequi tempora et."], ["summary", "Delectus rerum quibusdam nihil quasi sequi. Facilis ut quis commodi et nesciunt in. A eaque assumenda laboriosam aperiam fugit ut voluptate. Consequuntur exercitationem quo. Animi doloribus fuga ut beatae."], ["key", "michaela_spencer"], ["created_at", "2016-01-27 17:50:27.919720"], ["updated_at", "2016-01-27 17:50:27.919720"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:50:27.921477"], ["updated_at", "2016-01-27 17:50:27.921477"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Haleigh O'Conner"], ["job_title", "Principal Division Agent"], ["greetings", "Saepe veritatis quia eos aut omnis quam iure."], ["summary", "Nostrum magnam qui quam. Et exercitationem sit voluptas earum placeat. Et nemo explicabo reiciendis. Provident quis eum. Est optio quo officia minus enim."], ["key", "miss_haleigh_o_conner"], ["created_at", "2016-01-27 17:50:27.925606"], ["updated_at", "2016-01-27 17:50:27.925606"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:50:27.927979"], ["updated_at", "2016-01-27 17:50:27.927979"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lacy Leuschke Sr."], ["job_title", "Customer Marketing Architect"], ["greetings", "Voluptatem dolorum dolore quia."], ["summary", "Autem iusto et id ex voluptatum quia voluptate. Error adipisci vero ut hic autem. Corrupti id omnis. Dolor necessitatibus ab. Velit quia iusto."], ["key", "lacy_leuschke_sr"], ["created_at", "2016-01-27 17:50:27.931797"], ["updated_at", "2016-01-27 17:50:27.931797"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:50:27.934346"], ["updated_at", "2016-01-27 17:50:27.934346"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Christy Dare"], ["job_title", "Senior Optimization Planner"], ["greetings", "Officia consequuntur itaque reiciendis labore aspernatur eos mollitia."], ["summary", "Molestiae dolorem ipsum asperiores. Placeat ea voluptatum. Minima aperiam eveniet reiciendis."], ["key", "christy_dare"], ["created_at", "2016-01-27 17:50:27.938580"], ["updated_at", "2016-01-27 17:50:27.938580"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (1.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nemo"], ["key", "nemo"], ["created_at", "2016-01-27 17:50:27.948079"], ["updated_at", "2016-01-27 17:50:27.948079"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "modi"], ["key", "modi"], ["created_at", "2016-01-27 17:50:27.952556"], ["updated_at", "2016-01-27 17:50:27.952556"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Silk Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:50:27.964062"], ["updated_at", "2016-01-27 17:50:27.964062"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Copper Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:50:27.966598"], ["updated_at", "2016-01-27 17:50:27.966598"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Aluminum Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:50:27.968850"], ["updated_at", "2016-01-27 17:50:27.968850"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wool Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:50:27.971244"], ["updated_at", "2016-01-27 17:50:27.971244"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Brandyn Koelpin"], ["job_title", "Internal Brand Representative"], ["greetings", "Eos quis maiores voluptas soluta provident delectus explicabo."], ["summary", "Nihil unde est non odio repudiandae. Esse aut et. Voluptatem cumque repellendus excepturi et dolorem."], ["key", "brandyn_koelpin"], ["created_at", "2016-01-27 17:50:27.996123"], ["updated_at", "2016-01-27 17:50:27.996123"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-27 17:50:27.998015"], ["updated_at", "2016-01-27 17:50:27.998015"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptas"], ["key", "voluptas"], ["created_at", "2016-01-27 17:50:27.999408"], ["updated_at", "2016-01-27 17:50:27.999408"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Aluminum Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:50:28.001049"], ["updated_at", "2016-01-27 17:50:28.001049"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Aluminum Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:50:28.002764"], ["updated_at", "2016-01-27 17:50:28.002764"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Leather Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:50:28.005382"], ["updated_at", "2016-01-27 17:50:28.005382"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Marble Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:50:28.007307"], ["updated_at", "2016-01-27 17:50:28.007307"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lukas Kuvalis"], ["job_title", "Product Identity Agent"], ["greetings", "Voluptas voluptatem facilis et optio eos."], ["summary", "Rem eos est velit. Aperiam recusandae omnis et excepturi numquam. Illo soluta iure incidunt ut qui. Veritatis quos sit voluptatem quas."], ["key", "lukas_kuvalis"], ["created_at", "2016-01-27 17:50:28.023470"], ["updated_at", "2016-01-27 17:50:28.023470"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Plastic Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:50:28.025607"], ["updated_at", "2016-01-27 17:50:28.025607"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Linen Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:50:28.027602"], ["updated_at", "2016-01-27 17:50:28.027602"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Cotton Knife"], ["site_id", 1], ["created_at", "2016-01-27 17:50:28.029883"], ["updated_at", "2016-01-27 17:50:28.029883"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Bronze Gloves"], ["site_id", 1], ["created_at", "2016-01-27 17:50:28.031402"], ["updated_at", "2016-01-27 17:50:28.031402"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (16.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.3ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (233.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (302.0ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Adela Tromp"], ["job_title", "Lead Branding Analyst"], ["greetings", "In autem voluptas quia et sunt a totam."], ["summary", "Consequatur ex et deleniti dolorum aut eligendi quae. Illum distinctio eius numquam qui sit. Repellendus enim nihil officiis. Fugit asperiores voluptatem et corporis exercitationem sapiente. Eos dolor quas voluptatem error."], ["key", "adela_tromp"], ["created_at", "2016-01-27 17:50:28.359668"], ["updated_at", "2016-01-27 17:50:28.359668"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Steel Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:50:28.364407"], ["updated_at", "2016-01-27 17:50:28.364407"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Cotton Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:50:28.368527"], ["updated_at", "2016-01-27 17:50:28.368527"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Paper Plate"], ["site_id", 1], ["created_at", "2016-01-27 17:50:28.372307"], ["updated_at", "2016-01-27 17:50:28.372307"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Steel Lamp"], ["site_id", 1], ["created_at", "2016-01-27 17:50:28.376123"], ["updated_at", "2016-01-27 17:50:28.376123"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Leon Littel"], ["job_title", "District Paradigm Executive"], ["greetings", "Animi molestias voluptas eos voluptatem aspernatur repudiandae qui aliquid."], ["summary", "Voluptatem rerum eos nihil. Omnis voluptates ut omnis voluptate sit. Sed ut aut aspernatur. Commodi minima ipsum."], ["key", "mrs_leon_littel"], ["created_at", "2016-01-27 17:50:28.397994"], ["updated_at", "2016-01-27 17:50:28.397994"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eum"], ["key", "eum"], ["created_at", "2016-01-27 17:50:28.400258"], ["updated_at", "2016-01-27 17:50:28.400258"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-27 17:50:28.402355"], ["updated_at", "2016-01-27 17:50:28.402355"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Silk Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:50:28.405148"], ["updated_at", "2016-01-27 17:50:28.405148"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Linen Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:50:28.409034"], ["updated_at", "2016-01-27 17:50:28.409034"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Iron Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:50:28.411563"], ["updated_at", "2016-01-27 17:50:28.411563"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Cotton Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:50:28.415686"], ["updated_at", "2016-01-27 17:50:28.415686"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (1.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (8.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (32.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Wilford Mraz"], ["job_title", "Chief Program Associate"], ["greetings", "Asperiores dolore excepturi libero accusantium suscipit quasi."], ["summary", "Ipsam ullam quis. Quia provident incidunt. Beatae qui explicabo necessitatibus. Voluptate neque voluptatem exercitationem illum deleniti unde porro."], ["key", "mrs_wilford_mraz"], ["created_at", "2016-01-27 17:50:28.457931"], ["updated_at", "2016-01-27 17:50:28.457931"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsum"], ["key", "ipsum"], ["created_at", "2016-01-27 17:50:28.460828"], ["updated_at", "2016-01-27 17:50:28.460828"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quos"], ["key", "quos"], ["created_at", "2016-01-27 17:50:28.463099"], ["updated_at", "2016-01-27 17:50:28.463099"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Leather Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:50:28.465933"], ["updated_at", "2016-01-27 17:50:28.465933"]]  (0.4ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Rubber Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:50:28.468962"], ["updated_at", "2016-01-27 17:50:28.468962"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Plastic Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:50:28.471796"], ["updated_at", "2016-01-27 17:50:28.471796"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:50:28.474509"], ["updated_at", "2016-01-27 17:50:28.474509"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (1.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.8ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Baby Cassin II"], ["job_title", "Investor Metrics Executive"], ["greetings", "Minus ipsam magni itaque occaecati."], ["summary", "Quibusdam rem illum quasi cum delectus tempore. Necessitatibus velit iure qui placeat. Dolorem qui vitae ut iure. Nihil itaque et provident sed in velit quas."], ["key", "baby_cassin_ii"], ["created_at", "2016-01-27 17:50:28.502650"], ["updated_at", "2016-01-27 17:50:28.502650"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (15.7ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kareem Harber Sr."], ["job_title", "Corporate Integration Supervisor"], ["greetings", "Animi et blanditiis quas error assumenda."], ["summary", "In aliquam numquam et assumenda totam amet. Omnis minima ut minus. Dolorum ipsum optio magnam asperiores debitis. Similique ullam pariatur aut placeat cumque quisquam. Nesciunt magni velit minus."], ["key", "kareem_harber_sr"], ["created_at", "2016-01-27 17:50:28.541179"], ["updated_at", "2016-01-27 17:50:28.541179"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.0ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Angeline Stehr"], ["job_title", "Customer Branding Analyst"], ["greetings", "Ut error non nesciunt."], ["summary", "Fugiat ex enim ratione ut. Possimus nulla omnis expedita. Dolores id cum deserunt nobis est dolorum."], ["key", "angeline_stehr"], ["created_at", "2016-01-27 17:50:28.551414"], ["updated_at", "2016-01-27 17:50:28.551414"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "neque"], ["key", "neque"], ["created_at", "2016-01-27 17:50:28.554523"], ["updated_at", "2016-01-27 17:50:28.554523"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nihil"], ["key", "nihil"], ["created_at", "2016-01-27 17:50:28.557228"], ["updated_at", "2016-01-27 17:50:28.557228"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wooden Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:50:28.560643"], ["updated_at", "2016-01-27 17:50:28.560643"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Granite Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:50:28.563415"], ["updated_at", "2016-01-27 17:50:28.563415"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Marble Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:50:28.565771"], ["updated_at", "2016-01-27 17:50:28.565771"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:50:28.568211"], ["updated_at", "2016-01-27 17:50:28.568211"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.3ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (27.5ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cathy Stoltenberg IV"], ["job_title", "Customer Mobility Agent"], ["greetings", "Natus consequatur voluptas ea quis et."], ["summary", "Quas voluptate et et quidem eligendi velit. Quo corporis ea qui nostrum dolores vel et. Quam incidunt ut laudantium repudiandae voluptatem. Illum sint nam. Unde est veritatis vel."], ["key", "cathy_stoltenberg_iv"], ["created_at", "2016-01-27 17:52:57.610226"], ["updated_at", "2016-01-27 17:52:57.610226"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:52:57.630697"], ["updated_at", "2016-01-27 17:52:57.630697"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Yolanda Koepp I"], ["job_title", "Product Optimization Strategist"], ["greetings", "Reiciendis modi impedit eligendi vel."], ["summary", "Sint voluptas temporibus esse velit dolorum ad dolorem. Qui itaque deserunt quia autem rerum. Similique veniam sunt vitae nobis est magni consequatur. Architecto eaque error sit consequatur aut voluptas ipsum."], ["key", "yolanda_koepp_i"], ["created_at", "2016-01-27 17:52:57.636315"], ["updated_at", "2016-01-27 17:52:57.636315"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:52:57.638438"], ["updated_at", "2016-01-27 17:52:57.638438"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Arvid Schultz"], ["job_title", "Direct Accountability Producer"], ["greetings", "Consectetur aut et ipsa harum magni corporis officiis."], ["summary", "Quaerat voluptatem eius. Mollitia ipsa harum dolores repellendus aut consequatur eveniet. Quia necessitatibus id autem. Voluptatem fuga recusandae eos quasi cum. Id quos non."], ["key", "arvid_schultz"], ["created_at", "2016-01-27 17:52:57.640844"], ["updated_at", "2016-01-27 17:52:57.640844"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:52:57.642163"], ["updated_at", "2016-01-27 17:52:57.642163"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Marian Moore"], ["job_title", "Central Accounts Executive"], ["greetings", "Ad quis dolores voluptatum minima illo expedita nam quo."], ["summary", "Sunt culpa neque. Sit eius veniam error. Vitae quae praesentium. Incidunt vel deleniti perferendis corrupti optio veniam. Dolor eos accusamus autem minus velit provident."], ["key", "marian_moore"], ["created_at", "2016-01-27 17:52:57.649674"], ["updated_at", "2016-01-27 17:52:57.649674"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:52:57.651657"], ["updated_at", "2016-01-27 17:52:57.651657"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gregorio Ortiz"], ["job_title", "Principal Metrics Engineer"], ["greetings", "Tempore voluptas est vero voluptates."], ["summary", "Non eveniet labore est amet unde. Illum aut nihil rerum tempora. Fugit adipisci est earum. Voluptatem sit quisquam porro odit odio ea velit."], ["key", "gregorio_ortiz"], ["created_at", "2016-01-27 17:52:57.655719"], ["updated_at", "2016-01-27 17:52:57.655719"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:52:57.657570"], ["updated_at", "2016-01-27 17:52:57.657570"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Okey Kling"], ["job_title", "Internal Security Facilitator"], ["greetings", "Soluta qui deleniti qui."], ["summary", "Distinctio quo fugit porro dicta nulla ipsa provident. Dolores unde molestias. Dolores eveniet quis est quo."], ["key", "okey_kling"], ["created_at", "2016-01-27 17:52:57.661414"], ["updated_at", "2016-01-27 17:52:57.661414"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:52:57.663253"], ["updated_at", "2016-01-27 17:52:57.663253"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Leif Kreiger"], ["job_title", "Investor Data Technician"], ["greetings", "Quo incidunt in unde eligendi."], ["summary", "Quod tenetur consequatur nam ratione. Harum non corrupti amet at laudantium et omnis. Totam dolorem qui. Sint corrupti voluptas ipsa architecto. Laudantium soluta nihil exercitationem numquam est facere assumenda."], ["key", "leif_kreiger"], ["created_at", "2016-01-27 17:52:57.667083"], ["updated_at", "2016-01-27 17:52:57.667083"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quas"], ["key", "quas"], ["created_at", "2016-01-27 17:52:57.672386"], ["updated_at", "2016-01-27 17:52:57.672386"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "omnis"], ["key", "omnis"], ["created_at", "2016-01-27 17:52:57.674505"], ["updated_at", "2016-01-27 17:52:57.674505"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Plastic Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:52:57.687083"], ["updated_at", "2016-01-27 17:52:57.687083"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Copper Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:52:57.689216"], ["updated_at", "2016-01-27 17:52:57.689216"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Steel Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:52:57.691444"], ["updated_at", "2016-01-27 17:52:57.691444"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Wool Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:52:57.693326"], ["updated_at", "2016-01-27 17:52:57.693326"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aletha Schaefer"], ["job_title", "Customer Creative Executive"], ["greetings", "Vero beatae magni impedit possimus ipsum qui id."], ["summary", "Asperiores quasi nam deleniti. In perspiciatis vitae. Esse neque facere vitae est. Illo non officia aut quia. Modi dignissimos inventore rerum."], ["key", "aletha_schaefer"], ["created_at", "2016-01-27 17:52:57.716938"], ["updated_at", "2016-01-27 17:52:57.716938"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iste"], ["key", "iste"], ["created_at", "2016-01-27 17:52:57.718802"], ["updated_at", "2016-01-27 17:52:57.718802"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "id"], ["key", "id"], ["created_at", "2016-01-27 17:52:57.720406"], ["updated_at", "2016-01-27 17:52:57.720406"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Plastic Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:52:57.722311"], ["updated_at", "2016-01-27 17:52:57.722311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Aluminum Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:52:57.724270"], ["updated_at", "2016-01-27 17:52:57.724270"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Steel Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:52:57.726240"], ["updated_at", "2016-01-27 17:52:57.726240"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Concrete Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:52:57.728504"], ["updated_at", "2016-01-27 17:52:57.728504"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Zechariah Bartell"], ["job_title", "District Usability Architect"], ["greetings", "Laborum quas autem optio eum occaecati illum."], ["summary", "Aut suscipit modi in aut eum. Architecto amet nostrum non deleniti accusantium reiciendis ullam. Autem facere earum corrupti officiis ut."], ["key", "zechariah_bartell"], ["created_at", "2016-01-27 17:52:57.743522"], ["updated_at", "2016-01-27 17:52:57.743522"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Steel Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:52:57.745525"], ["updated_at", "2016-01-27 17:52:57.745525"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Granite Hat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:52:57.747649"], ["updated_at", "2016-01-27 17:52:57.747649"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Linen Shirt"], ["site_id", 1], ["created_at", "2016-01-27 17:52:57.749638"], ["updated_at", "2016-01-27 17:52:57.749638"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wool Chair"], ["site_id", 1], ["created_at", "2016-01-27 17:52:57.752017"], ["updated_at", "2016-01-27 17:52:57.752017"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (14.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (233.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (299.2ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Katharina Considine"], ["job_title", "District Accountability Officer"], ["greetings", "Natus quibusdam sit rerum rerum."], ["summary", "Ducimus autem assumenda labore rerum expedita. Pariatur est velit deserunt quisquam suscipit et placeat. Hic error repellendus quam maxime impedit consequuntur et. Nemo aut quia."], ["key", "katharina_considine"], ["created_at", "2016-01-27 17:52:58.076575"], ["updated_at", "2016-01-27 17:52:58.076575"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Linen Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:52:58.081209"], ["updated_at", "2016-01-27 17:52:58.081209"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Bronze Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:52:58.085546"], ["updated_at", "2016-01-27 17:52:58.085546"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Cotton Shoes"], ["site_id", 1], ["created_at", "2016-01-27 17:52:58.088186"], ["updated_at", "2016-01-27 17:52:58.088186"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Silk Coat"], ["site_id", 1], ["created_at", "2016-01-27 17:52:58.089888"], ["updated_at", "2016-01-27 17:52:58.089888"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (10.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (15.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Blanca Goyette III"], ["job_title", "Direct Configuration Designer"], ["greetings", "Doloremque occaecati est in quas ea quisquam."], ["summary", "Similique maxime possimus blanditiis. Nihil est dolore non ut sed natus fugit. Atque veniam sed porro. Sed est in nihil reprehenderit et. Exercitationem dicta excepturi ea quae."], ["key", "blanca_goyette_iii"], ["created_at", "2016-01-27 17:52:58.116066"], ["updated_at", "2016-01-27 17:52:58.116066"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 17:52:58.120311"], ["updated_at", "2016-01-27 17:52:58.120311"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "labore"], ["key", "labore"], ["created_at", "2016-01-27 17:52:58.123886"], ["updated_at", "2016-01-27 17:52:58.123886"]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Rubber Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:52:58.130034"], ["updated_at", "2016-01-27 17:52:58.130034"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:52:58.134232"], ["updated_at", "2016-01-27 17:52:58.134232"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Cotton Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:52:58.138188"], ["updated_at", "2016-01-27 17:52:58.138188"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Granite Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:52:58.142639"], ["updated_at", "2016-01-27 17:52:58.142639"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.0ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.7ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (42.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Wilson Macejkovic"], ["job_title", "Human Operations Executive"], ["greetings", "Doloribus qui fuga ipsa quos illo ipsam magnam."], ["summary", "Quo quae aut eaque voluptates. Recusandae id eos sunt ut officia amet totam. Velit temporibus nostrum sit porro tenetur delectus. Sequi veritatis eius qui repellat est eos. Dolorem sunt laboriosam eaque laborum."], ["key", "ms_wilson_macejkovic"], ["created_at", "2016-01-27 17:52:58.195182"], ["updated_at", "2016-01-27 17:52:58.195182"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 17:52:58.198286"], ["updated_at", "2016-01-27 17:52:58.198286"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aliquam"], ["key", "aliquam"], ["created_at", "2016-01-27 17:52:58.200616"], ["updated_at", "2016-01-27 17:52:58.200616"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Copper Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:52:58.203689"], ["updated_at", "2016-01-27 17:52:58.203689"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Silk Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:52:58.206751"], ["updated_at", "2016-01-27 17:52:58.206751"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Marble Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:52:58.209031"], ["updated_at", "2016-01-27 17:52:58.209031"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Silk Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:52:58.211806"], ["updated_at", "2016-01-27 17:52:58.211806"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.8ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (25.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lenore Farrell"], ["job_title", "National Accounts Assistant"], ["greetings", "Veritatis fuga molestias rerum aut officia."], ["summary", "Saepe quibusdam eligendi quia. Voluptatem ut suscipit aperiam quidem et. Labore ipsum dolore ipsa illo et. Facilis sed ut sint quod exercitationem soluta."], ["key", "lenore_farrell"], ["created_at", "2016-01-27 17:52:58.246559"], ["updated_at", "2016-01-27 17:52:58.246559"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (15.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Britney Balistreri"], ["job_title", "Principal Group Designer"], ["greetings", "Debitis neque asperiores inventore quae dolor fuga aut."], ["summary", "Eveniet ut cum animi cumque. Laboriosam tempora quod sunt omnis reprehenderit impedit. Enim totam et. Sunt earum voluptates illo impedit."], ["key", "ms_britney_balistreri"], ["created_at", "2016-01-27 17:52:58.280952"], ["updated_at", "2016-01-27 17:52:58.280952"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.7ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.5ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ernestine Dibbert"], ["job_title", "Dynamic Applications Architect"], ["greetings", "Vel et sit doloremque repellat."], ["summary", "Ad optio deleniti maxime blanditiis. Illo cumque voluptate cum occaecati. Corporis alias ipsa deleniti quod blanditiis quia. Id tenetur sequi expedita mollitia. Non totam cum asperiores modi deleniti necessitatibus rerum."], ["key", "ernestine_dibbert"], ["created_at", "2016-01-27 17:52:58.294246"], ["updated_at", "2016-01-27 17:52:58.294246"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iure"], ["key", "iure"], ["created_at", "2016-01-27 17:52:58.298807"], ["updated_at", "2016-01-27 17:52:58.298807"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sapiente"], ["key", "sapiente"], ["created_at", "2016-01-27 17:52:58.301386"], ["updated_at", "2016-01-27 17:52:58.301386"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:52:58.305725"], ["updated_at", "2016-01-27 17:52:58.305725"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:52:58.308368"], ["updated_at", "2016-01-27 17:52:58.308368"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Bronze Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:52:58.311655"], ["updated_at", "2016-01-27 17:52:58.311655"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Granite Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:52:58.314776"], ["updated_at", "2016-01-27 17:52:58.314776"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (8.3ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (30.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tristian Kuhlman"], ["job_title", "Human Markets Assistant"], ["greetings", "In libero quaerat est voluptate voluptas sit et qui."], ["summary", "Est assumenda quis et eius. Sed dignissimos occaecati ab ut. Omnis beatae quidem dolores et qui repellendus minus. Asperiores ratione assumenda dignissimos ducimus unde maiores. Assumenda dolore eos iure consequatur temporibus."], ["key", "tristian_kuhlman"], ["created_at", "2016-01-27 17:53:39.873315"], ["updated_at", "2016-01-27 17:53:39.873315"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:53:39.889613"], ["updated_at", "2016-01-27 17:53:39.889613"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Abner Monahan V"], ["job_title", "Corporate Intranet Associate"], ["greetings", "Recusandae omnis deserunt quas omnis et dolorem."], ["summary", "Corrupti nulla et. Voluptatem quibusdam in. Rem assumenda est natus aut sint et eligendi. Est sequi eum tenetur est dolor. Qui consequuntur ut sunt voluptas optio."], ["key", "abner_monahan_v"], ["created_at", "2016-01-27 17:53:39.895149"], ["updated_at", "2016-01-27 17:53:39.895149"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:53:39.897363"], ["updated_at", "2016-01-27 17:53:39.897363"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Arely Hansen"], ["job_title", "Dynamic Accountability Assistant"], ["greetings", "Similique dolorum perferendis veniam."], ["summary", "Aut voluptatum sapiente suscipit assumenda ducimus et. Rem nostrum molestiae quod. At iste neque dignissimos aliquid. Sit aut ad fuga consequuntur saepe sed ab. Ut sit vel aspernatur nihil quis nostrum."], ["key", "arely_hansen"], ["created_at", "2016-01-27 17:53:39.899997"], ["updated_at", "2016-01-27 17:53:39.899997"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:53:39.901516"], ["updated_at", "2016-01-27 17:53:39.901516"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Odessa Ziemann"], ["job_title", "Forward Paradigm Liaison"], ["greetings", "Mollitia et repellat qui ut."], ["summary", "Vitae architecto accusantium voluptatibus placeat adipisci. Recusandae odio dolor officiis nisi ut. Ut reiciendis quam iure ad tempora placeat."], ["key", "odessa_ziemann"], ["created_at", "2016-01-27 17:53:39.907563"], ["updated_at", "2016-01-27 17:53:39.907563"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:53:39.909350"], ["updated_at", "2016-01-27 17:53:39.909350"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Sarai Boyle"], ["job_title", "Legacy Factors Engineer"], ["greetings", "Consequatur rerum voluptatem reprehenderit ab totam et iste atque."], ["summary", "Sint eum velit id. Magni aut rerum dolores quis adipisci. Voluptatum animi alias voluptatibus fuga."], ["key", "ms_sarai_boyle"], ["created_at", "2016-01-27 17:53:39.912780"], ["updated_at", "2016-01-27 17:53:39.912780"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:53:39.914779"], ["updated_at", "2016-01-27 17:53:39.914779"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Abbigail Beier"], ["job_title", "Dynamic Functionality Officer"], ["greetings", "Officiis nobis rerum aut rem vitae quis voluptates."], ["summary", "Ut quo ut modi officia aliquam magnam molestiae. Adipisci enim fugit inventore accusantium. Minus saepe quia illo tempora."], ["key", "abbigail_beier"], ["created_at", "2016-01-27 17:53:39.919034"], ["updated_at", "2016-01-27 17:53:39.919034"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:53:39.920773"], ["updated_at", "2016-01-27 17:53:39.920773"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Brant Schuster"], ["job_title", "Internal Interactions Designer"], ["greetings", "Est quasi quia cumque odit distinctio."], ["summary", "Qui deleniti corporis nobis in et qui. Maiores quia sit est beatae provident perferendis. Earum aut magnam."], ["key", "brant_schuster"], ["created_at", "2016-01-27 17:53:39.924359"], ["updated_at", "2016-01-27 17:53:39.924359"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "doloribus"], ["key", "doloribus"], ["created_at", "2016-01-27 17:53:39.930442"], ["updated_at", "2016-01-27 17:53:39.930442"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "repellendus"], ["key", "repellendus"], ["created_at", "2016-01-27 17:53:39.932215"], ["updated_at", "2016-01-27 17:53:39.932215"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:53:39.938615"], ["updated_at", "2016-01-27 17:53:39.938615"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Cotton Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:53:39.940694"], ["updated_at", "2016-01-27 17:53:39.940694"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Leather Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:53:39.942750"], ["updated_at", "2016-01-27 17:53:39.942750"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:53:39.944511"], ["updated_at", "2016-01-27 17:53:39.944511"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Sedrick Christiansen"], ["job_title", "Dynamic Communications Facilitator"], ["greetings", "Quo ea nihil odit provident itaque."], ["summary", "Magnam eveniet perferendis voluptatibus. Repudiandae rerum atque et. Voluptatem reprehenderit non."], ["key", "mrs_sedrick_christiansen"], ["created_at", "2016-01-27 17:53:39.968997"], ["updated_at", "2016-01-27 17:53:39.968997"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "accusantium"], ["key", "accusantium"], ["created_at", "2016-01-27 17:53:39.970792"], ["updated_at", "2016-01-27 17:53:39.970792"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "praesentium"], ["key", "praesentium"], ["created_at", "2016-01-27 17:53:39.972203"], ["updated_at", "2016-01-27 17:53:39.972203"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Concrete Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:53:39.973813"], ["updated_at", "2016-01-27 17:53:39.973813"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Rubber Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:53:39.975437"], ["updated_at", "2016-01-27 17:53:39.975437"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Bronze Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:53:39.977397"], ["updated_at", "2016-01-27 17:53:39.977397"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Rubber Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:53:39.979323"], ["updated_at", "2016-01-27 17:53:39.979323"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Naomi Conn"], ["job_title", "Customer Markets Representative"], ["greetings", "Et ipsa deserunt eum."], ["summary", "Fugit deserunt nesciunt minima et dolore harum qui. Non laudantium natus qui odit numquam et nesciunt. Voluptate nostrum nihil."], ["key", "naomi_conn"], ["created_at", "2016-01-27 17:53:40.028469"], ["updated_at", "2016-01-27 17:53:40.028469"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Leather Hat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:53:40.031304"], ["updated_at", "2016-01-27 17:53:40.031304"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wool Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:53:40.033823"], ["updated_at", "2016-01-27 17:53:40.033823"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Granite Computer"], ["site_id", 1], ["created_at", "2016-01-27 17:53:40.035667"], ["updated_at", "2016-01-27 17:53:40.035667"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Cotton Table"], ["site_id", 1], ["created_at", "2016-01-27 17:53:40.037144"], ["updated_at", "2016-01-27 17:53:40.037144"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (14.8ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (234.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (300.4ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jermain Ernser"], ["job_title", "Legacy Operations Liaison"], ["greetings", "Officiis quia magni tenetur."], ["summary", "Minus amet ut fuga. Quo odit hic aliquam reprehenderit. Maxime quam fugit omnis."], ["key", "jermain_ernser"], ["created_at", "2016-01-27 17:53:40.363091"], ["updated_at", "2016-01-27 17:53:40.363091"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Steel Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:53:40.367699"], ["updated_at", "2016-01-27 17:53:40.367699"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Rubber Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:53:40.372153"], ["updated_at", "2016-01-27 17:53:40.372153"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wooden Table"], ["site_id", 1], ["created_at", "2016-01-27 17:53:40.375957"], ["updated_at", "2016-01-27 17:53:40.375957"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Leather Table"], ["site_id", 1], ["created_at", "2016-01-27 17:53:40.379622"], ["updated_at", "2016-01-27 17:53:40.379622"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.7ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (10.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (17.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tess Barrows"], ["job_title", "Customer Usability Manager"], ["greetings", "Doloremque qui eum sed eveniet iure odio autem officia."], ["summary", "Rem perspiciatis non et voluptate labore. Voluptas illo rerum qui impedit neque. Vero illum quo reiciendis esse soluta."], ["key", "tess_barrows"], ["created_at", "2016-01-27 17:53:40.413346"], ["updated_at", "2016-01-27 17:53:40.413346"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nesciunt"], ["key", "nesciunt"], ["created_at", "2016-01-27 17:53:40.419264"], ["updated_at", "2016-01-27 17:53:40.419264"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cum"], ["key", "cum"], ["created_at", "2016-01-27 17:53:40.424555"], ["updated_at", "2016-01-27 17:53:40.424555"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:53:40.430362"], ["updated_at", "2016-01-27 17:53:40.430362"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Plastic Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:53:40.437650"], ["updated_at", "2016-01-27 17:53:40.437650"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Linen Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:53:40.441781"], ["updated_at", "2016-01-27 17:53:40.441781"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:53:40.456968"], ["updated_at", "2016-01-27 17:53:40.456968"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Abigayle Wilderman"], ["job_title", "Lead Division Designer"], ["greetings", "Est a officiis voluptatem ea."], ["summary", "Aliquid dignissimos quis aut corporis. Dignissimos autem reprehenderit. Illum alias possimus eius molestiae. Praesentium tempora inventore explicabo omnis nihil."], ["key", "miss_abigayle_wilderman"], ["created_at", "2016-01-27 17:53:40.486873"], ["updated_at", "2016-01-27 17:53:40.486873"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "blanditiis"], ["key", "blanditiis"], ["created_at", "2016-01-27 17:53:40.489458"], ["updated_at", "2016-01-27 17:53:40.489458"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quis"], ["key", "quis"], ["created_at", "2016-01-27 17:53:40.491324"], ["updated_at", "2016-01-27 17:53:40.491324"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wooden Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:53:40.494585"], ["updated_at", "2016-01-27 17:53:40.494585"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Marble Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:53:40.497630"], ["updated_at", "2016-01-27 17:53:40.497630"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Aluminum Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:53:40.501247"], ["updated_at", "2016-01-27 17:53:40.501247"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Iron Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:53:40.503391"], ["updated_at", "2016-01-27 17:53:40.503391"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jaquelin Hyatt"], ["job_title", "Dynamic Group Engineer"], ["greetings", "Eveniet numquam ducimus deleniti quidem sint."], ["summary", "Eum quia ratione neque dolor ad amet. Explicabo et laborum error quis. Facere voluptatibus odit ut."], ["key", "jaquelin_hyatt"], ["created_at", "2016-01-27 17:53:40.534199"], ["updated_at", "2016-01-27 17:53:40.534199"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (15.2ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cheyenne McLaughlin"], ["job_title", "District Response Administrator"], ["greetings", "Velit quis aut non veritatis maxime minus."], ["summary", "Quidem quibusdam assumenda. Sequi enim a vel quae libero at consequatur. Qui aliquid minus et similique. Exercitationem accusantium iure quo voluptatem rerum sit tempore. Ut a nemo et iusto natus nesciunt."], ["key", "cheyenne_mclaughlin"], ["created_at", "2016-01-27 17:53:40.569673"], ["updated_at", "2016-01-27 17:53:40.569673"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.8ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Donnell Auer"], ["job_title", "Chief Identity Architect"], ["greetings", "Aut non ratione omnis."], ["summary", "Quaerat possimus ea impedit consequatur consequatur asperiores tenetur. Voluptates at nostrum sed voluptas ut necessitatibus. Laboriosam explicabo sint."], ["key", "donnell_auer"], ["created_at", "2016-01-27 17:53:40.580561"], ["updated_at", "2016-01-27 17:53:40.580561"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fugit"], ["key", "fugit"], ["created_at", "2016-01-27 17:53:40.583023"], ["updated_at", "2016-01-27 17:53:40.583023"]]  (0.8ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tempore"], ["key", "tempore"], ["created_at", "2016-01-27 17:53:40.585661"], ["updated_at", "2016-01-27 17:53:40.585661"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wool Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:53:40.589084"], ["updated_at", "2016-01-27 17:53:40.589084"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Concrete Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:53:40.592527"], ["updated_at", "2016-01-27 17:53:40.592527"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Marble Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:53:40.601515"], ["updated_at", "2016-01-27 17:53:40.601515"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:53:40.603580"], ["updated_at", "2016-01-27 17:53:40.603580"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.1ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.5ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Heidi Glover"], ["job_title", "Legacy Brand Developer"], ["greetings", "Quisquam vel cum eius sed."], ["summary", "Dolore voluptatem accusantium aut consequuntur natus quis. Deleniti sit libero esse qui aut. Quidem laborum est. Repellat unde id dolores. Quis doloremque vel pariatur aut fugiat."], ["key", "heidi_glover"], ["created_at", "2016-01-27 17:56:21.660239"], ["updated_at", "2016-01-27 17:56:21.660239"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:56:21.677242"], ["updated_at", "2016-01-27 17:56:21.677242"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Magdalena Bashirian"], ["job_title", "International Tactics Supervisor"], ["greetings", "Est corporis eos ut sit incidunt quaerat."], ["summary", "Fugiat omnis rerum. Iusto quas velit optio placeat ad dolore. Officia cupiditate voluptas odio voluptatem illo aut."], ["key", "magdalena_bashirian"], ["created_at", "2016-01-27 17:56:21.683383"], ["updated_at", "2016-01-27 17:56:21.683383"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:56:21.685155"], ["updated_at", "2016-01-27 17:56:21.685155"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Victoria Kirlin"], ["job_title", "Investor Data Manager"], ["greetings", "Dolore fugit alias reiciendis animi sapiente velit suscipit qui."], ["summary", "Optio rem voluptatem adipisci quae sint. Et ut est deleniti laboriosam tenetur sapiente. Labore pariatur vel vel consectetur sit. Et sint ut voluptatum voluptas hic id amet."], ["key", "victoria_kirlin"], ["created_at", "2016-01-27 17:56:21.687710"], ["updated_at", "2016-01-27 17:56:21.687710"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:56:21.689007"], ["updated_at", "2016-01-27 17:56:21.689007"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cristian Smith"], ["job_title", "Dynamic Infrastructure Officer"], ["greetings", "Nihil recusandae saepe voluptatem doloribus iure voluptatibus qui voluptatem."], ["summary", "Eaque et voluptates. Iste maiores voluptas voluptatem quis placeat harum. Sequi quidem eum. Maiores explicabo porro distinctio iusto."], ["key", "cristian_smith"], ["created_at", "2016-01-27 17:56:21.695996"], ["updated_at", "2016-01-27 17:56:21.695996"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:56:21.697870"], ["updated_at", "2016-01-27 17:56:21.697870"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jerrold Farrell"], ["job_title", "Dynamic Web Facilitator"], ["greetings", "Voluptatem delectus et doloremque quos quae dolorem."], ["summary", "Itaque tempore non inventore nihil quis. Iusto qui nostrum itaque ea sunt nihil aliquid. Ut aut est ad expedita velit sed neque. Sed ut eum molestias voluptatum dolor. Omnis occaecati reprehenderit eos qui et esse."], ["key", "jerrold_farrell"], ["created_at", "2016-01-27 17:56:21.701678"], ["updated_at", "2016-01-27 17:56:21.701678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:56:21.703688"], ["updated_at", "2016-01-27 17:56:21.703688"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Rocio Daugherty I"], ["job_title", "Future Identity Officer"], ["greetings", "In autem quisquam accusamus vel similique sequi facilis praesentium."], ["summary", "In et eaque ex aut. Similique nobis quaerat ut quia. Sunt placeat nihil dolorum ipsam ea qui excepturi. Enim assumenda voluptatum voluptates. Atque minima exercitationem voluptatem eos nisi optio mollitia."], ["key", "rocio_daugherty_i"], ["created_at", "2016-01-27 17:56:21.707598"], ["updated_at", "2016-01-27 17:56:21.707598"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:56:21.709425"], ["updated_at", "2016-01-27 17:56:21.709425"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alexandrine Hackett Jr."], ["job_title", "Regional Applications Coordinator"], ["greetings", "Ipsa et consequuntur voluptatibus sed sint saepe."], ["summary", "Laborum earum expedita praesentium officia. Omnis ullam aperiam sed nemo. Praesentium laudantium ullam quaerat incidunt. Quis est facilis expedita reprehenderit laudantium odit. Sunt sit qui autem."], ["key", "alexandrine_hackett_jr"], ["created_at", "2016-01-27 17:56:21.713575"], ["updated_at", "2016-01-27 17:56:21.713575"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolorum"], ["key", "dolorum"], ["created_at", "2016-01-27 17:56:21.718976"], ["updated_at", "2016-01-27 17:56:21.718976"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "possimus"], ["key", "possimus"], ["created_at", "2016-01-27 17:56:21.720991"], ["updated_at", "2016-01-27 17:56:21.720991"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Steel Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:56:21.730397"], ["updated_at", "2016-01-27 17:56:21.730397"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Linen Computer"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:56:21.733665"], ["updated_at", "2016-01-27 17:56:21.733665"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Aluminum Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:56:21.735794"], ["updated_at", "2016-01-27 17:56:21.735794"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Concrete Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:56:21.738318"], ["updated_at", "2016-01-27 17:56:21.738318"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Benton Bauch"], ["job_title", "Regional Communications Executive"], ["greetings", "Saepe nam deleniti sit ut dolor."], ["summary", "Debitis eius est aspernatur tempora quaerat. Dolor velit autem et. Aut et voluptatibus rerum est eligendi hic. Ipsam enim et quo voluptas aut. Ad deleniti ut pariatur dolorem blanditiis tempore ex."], ["key", "benton_bauch"], ["created_at", "2016-01-27 17:56:21.762318"], ["updated_at", "2016-01-27 17:56:21.762318"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quis"], ["key", "quis"], ["created_at", "2016-01-27 17:56:21.764998"], ["updated_at", "2016-01-27 17:56:21.764998"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-27 17:56:21.766623"], ["updated_at", "2016-01-27 17:56:21.766623"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Linen Car"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:56:21.769521"], ["updated_at", "2016-01-27 17:56:21.769521"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Rubber Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:56:21.772038"], ["updated_at", "2016-01-27 17:56:21.772038"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Iron Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:56:21.774452"], ["updated_at", "2016-01-27 17:56:21.774452"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Iron Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:56:21.776206"], ["updated_at", "2016-01-27 17:56:21.776206"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aimee Bartell"], ["job_title", "Principal Accountability Executive"], ["greetings", "Odio dolor id occaecati consectetur sequi nihil."], ["summary", "Labore eius quia. Ab ut recusandae aut dolorum voluptatem consequatur. Est aliquid magnam minima itaque aut eius quidem. Quibusdam laboriosam optio in deserunt."], ["key", "aimee_bartell"], ["created_at", "2016-01-27 17:56:21.827763"], ["updated_at", "2016-01-27 17:56:21.827763"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Marble Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:56:21.830498"], ["updated_at", "2016-01-27 17:56:21.830498"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Wool Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:56:21.833290"], ["updated_at", "2016-01-27 17:56:21.833290"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Silk Lamp"], ["site_id", 1], ["created_at", "2016-01-27 17:56:21.835499"], ["updated_at", "2016-01-27 17:56:21.835499"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Steel Coat"], ["site_id", 1], ["created_at", "2016-01-27 17:56:21.837527"], ["updated_at", "2016-01-27 17:56:21.837527"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (4.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (16.2ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (246.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (316.5ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jenifer Turcotte"], ["job_title", "Internal Operations Executive"], ["greetings", "Voluptatem commodi quia blanditiis eum labore repellat molestiae molestiae."], ["summary", "Quia nobis doloremque maxime cumque quisquam. Ut voluptas quia quis perferendis. Repellat ullam iste debitis aut voluptatem maiores."], ["key", "jenifer_turcotte"], ["created_at", "2016-01-27 17:56:22.179558"], ["updated_at", "2016-01-27 17:56:22.179558"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Paper Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:56:22.184011"], ["updated_at", "2016-01-27 17:56:22.184011"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Concrete Hat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:56:22.188318"], ["updated_at", "2016-01-27 17:56:22.188318"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Steel Pants"], ["site_id", 1], ["created_at", "2016-01-27 17:56:22.192388"], ["updated_at", "2016-01-27 17:56:22.192388"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Linen Pants"], ["site_id", 1], ["created_at", "2016-01-27 17:56:22.196002"], ["updated_at", "2016-01-27 17:56:22.196002"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.2ms) Portfolio::SiteProject Load (0.4ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Colleen Daniel"], ["job_title", "Regional Identity Developer"], ["greetings", "Eos assumenda pariatur qui sint."], ["summary", "Et iusto quo blanditiis. Voluptatem hic ut in praesentium provident velit iste. Ut consequatur ut repellendus. Blanditiis voluptas possimus ut et delectus a."], ["key", "colleen_daniel"], ["created_at", "2016-01-27 17:56:22.230228"], ["updated_at", "2016-01-27 17:56:22.230228"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ex"], ["key", "ex"], ["created_at", "2016-01-27 17:56:22.234101"], ["updated_at", "2016-01-27 17:56:22.234101"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 17:56:22.237519"], ["updated_at", "2016-01-27 17:56:22.237519"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Paper Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:56:22.242207"], ["updated_at", "2016-01-27 17:56:22.242207"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Aluminum Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:56:22.245862"], ["updated_at", "2016-01-27 17:56:22.245862"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Granite Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:56:22.249097"], ["updated_at", "2016-01-27 17:56:22.249097"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:56:22.259464"], ["updated_at", "2016-01-27 17:56:22.259464"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (23.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Travon Moore"], ["job_title", "Future Brand Technician"], ["greetings", "Dolor exercitationem accusantium fugiat laudantium sed."], ["summary", "Quam laudantium repellendus non et repudiandae. Nulla officia non rerum dolore impedit incidunt amet. Id aut eveniet ut quis fuga. Aut sequi tempore recusandae fuga ut."], ["key", "travon_moore"], ["created_at", "2016-01-27 17:56:22.291836"], ["updated_at", "2016-01-27 17:56:22.291836"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "blanditiis"], ["key", "blanditiis"], ["created_at", "2016-01-27 17:56:22.294293"], ["updated_at", "2016-01-27 17:56:22.294293"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "odit"], ["key", "odit"], ["created_at", "2016-01-27 17:56:22.296092"], ["updated_at", "2016-01-27 17:56:22.296092"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Rubber Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:56:22.300231"], ["updated_at", "2016-01-27 17:56:22.300231"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Silk Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:56:22.303629"], ["updated_at", "2016-01-27 17:56:22.303629"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Linen Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:56:22.307098"], ["updated_at", "2016-01-27 17:56:22.307098"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Silk Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:56:22.309298"], ["updated_at", "2016-01-27 17:56:22.309298"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.9ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Oscar Blick"], ["job_title", "Senior Configuration Analyst"], ["greetings", "Qui sapiente repellendus dolorem non nostrum et corporis."], ["summary", "Ea voluptas qui aliquam cupiditate. Et doloremque iure ex. Molestiae error dolore et vel. Accusamus sapiente qui quia debitis ut et."], ["key", "ms_oscar_blick"], ["created_at", "2016-01-27 17:56:22.341657"], ["updated_at", "2016-01-27 17:56:22.341657"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (14.2ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Juwan Pagac"], ["job_title", "Senior Implementation Agent"], ["greetings", "Quo et voluptate voluptas quaerat qui aliquam animi dicta."], ["summary", "Quia voluptatem nesciunt quae numquam vitae accusamus harum. Molestiae in voluptatem unde iure. Facilis quidem velit et. Aut laboriosam sunt at. Est velit id est a adipisci eum."], ["key", "mrs_juwan_pagac"], ["created_at", "2016-01-27 17:56:22.378435"], ["updated_at", "2016-01-27 17:56:22.378435"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (4.2ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Roosevelt Torphy"], ["job_title", "Legacy Mobility Technician"], ["greetings", "Omnis dolore nam unde rerum sapiente quasi ut."], ["summary", "Et et in itaque. Facilis consectetur in quos corporis nobis ad. In quia exercitationem eos earum rerum. Sunt quis animi voluptas eius dolores et vel. Quia qui culpa est facilis ad labore."], ["key", "roosevelt_torphy"], ["created_at", "2016-01-27 17:56:22.393750"], ["updated_at", "2016-01-27 17:56:22.393750"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aliquam"], ["key", "aliquam"], ["created_at", "2016-01-27 17:56:22.396958"], ["updated_at", "2016-01-27 17:56:22.396958"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nobis"], ["key", "nobis"], ["created_at", "2016-01-27 17:56:22.399588"], ["updated_at", "2016-01-27 17:56:22.399588"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Plastic Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:56:22.403406"], ["updated_at", "2016-01-27 17:56:22.403406"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:56:22.416492"], ["updated_at", "2016-01-27 17:56:22.416492"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Bronze Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:56:22.419033"], ["updated_at", "2016-01-27 17:56:22.419033"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Bronze Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:56:22.421894"], ["updated_at", "2016-01-27 17:56:22.421894"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.2ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Akeem Ratke"], ["job_title", "Product Accounts Specialist"], ["greetings", "Modi doloremque nulla cupiditate delectus eum deserunt."], ["summary", "Consectetur nulla laudantium dolorem voluptatem. Tenetur aut deleniti corporis ratione et et. Aut est enim qui expedita. Animi ducimus nulla quia voluptate fugiat eos velit. Sint aut qui."], ["key", "akeem_ratke"], ["created_at", "2016-01-27 17:56:46.575572"], ["updated_at", "2016-01-27 17:56:46.575572"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:56:46.591546"], ["updated_at", "2016-01-27 17:56:46.591546"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Carson Rutherford"], ["job_title", "Forward Implementation Technician"], ["greetings", "Ut quisquam voluptatum nobis repudiandae doloribus asperiores."], ["summary", "Quia iure architecto dolorem expedita dolorem illum. Saepe nesciunt voluptates sapiente. Est quibusdam non voluptatem maxime consequatur velit."], ["key", "miss_carson_rutherford"], ["created_at", "2016-01-27 17:56:46.597965"], ["updated_at", "2016-01-27 17:56:46.597965"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:56:46.599829"], ["updated_at", "2016-01-27 17:56:46.599829"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Orpha Quitzon Sr."], ["job_title", "Dynamic Directives Consultant"], ["greetings", "Deleniti tempora consequatur porro amet et."], ["summary", "Similique est sunt facere. Et temporibus omnis voluptatem similique quia numquam. Temporibus impedit enim nam. Est ea qui. Aut in et hic adipisci."], ["key", "orpha_quitzon_sr"], ["created_at", "2016-01-27 17:56:46.602521"], ["updated_at", "2016-01-27 17:56:46.602521"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:56:46.604468"], ["updated_at", "2016-01-27 17:56:46.604468"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jeffery Spencer"], ["job_title", "National Identity Executive"], ["greetings", "Ex exercitationem voluptas facere soluta amet voluptates ut placeat."], ["summary", "Unde repellat ullam qui. Quia incidunt eum deserunt natus id est animi. Omnis occaecati nulla quasi itaque et cum qui. Aut velit omnis. Sint quae accusantium sed nulla omnis."], ["key", "jeffery_spencer"], ["created_at", "2016-01-27 17:56:46.610905"], ["updated_at", "2016-01-27 17:56:46.610905"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:56:46.612873"], ["updated_at", "2016-01-27 17:56:46.612873"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Charley Douglas MD"], ["job_title", "District Research Associate"], ["greetings", "Ut et laudantium distinctio."], ["summary", "Esse reprehenderit id dignissimos est culpa. Itaque ducimus eum. Eveniet aspernatur blanditiis. Non exercitationem qui nemo amet est aperiam."], ["key", "charley_douglas_md"], ["created_at", "2016-01-27 17:56:46.617172"], ["updated_at", "2016-01-27 17:56:46.617172"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:56:46.619127"], ["updated_at", "2016-01-27 17:56:46.619127"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kacie Sawayn Sr."], ["job_title", "Central Quality Orchestrator"], ["greetings", "Qui error autem recusandae minima eos et eum."], ["summary", "Repudiandae officiis dolores sed ea est. Non libero quibusdam provident esse repellat. Maxime suscipit ad cum architecto. Sunt cum porro repellat velit delectus voluptatem. Nostrum mollitia rem cupiditate voluptas consequatur velit."], ["key", "kacie_sawayn_sr"], ["created_at", "2016-01-27 17:56:46.622744"], ["updated_at", "2016-01-27 17:56:46.622744"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:56:46.624495"], ["updated_at", "2016-01-27 17:56:46.624495"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Brant Boyer"], ["job_title", "Internal Creative Assistant"], ["greetings", "Ratione non neque quidem cum facere maiores impedit doloremque."], ["summary", "In et sunt aperiam. Ea occaecati ut qui doloribus nobis laboriosam. Mollitia et eos quo quo nemo molestias dolores. Non corporis omnis quis."], ["key", "brant_boyer"], ["created_at", "2016-01-27 17:56:46.628153"], ["updated_at", "2016-01-27 17:56:46.628153"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quis"], ["key", "quis"], ["created_at", "2016-01-27 17:56:46.633556"], ["updated_at", "2016-01-27 17:56:46.633556"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 17:56:46.635537"], ["updated_at", "2016-01-27 17:56:46.635537"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wooden Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:56:46.642618"], ["updated_at", "2016-01-27 17:56:46.642618"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Linen Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:56:46.645850"], ["updated_at", "2016-01-27 17:56:46.645850"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Plastic Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:56:46.647765"], ["updated_at", "2016-01-27 17:56:46.647765"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Linen Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:56:46.649608"], ["updated_at", "2016-01-27 17:56:46.649608"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Avery Bosco Sr."], ["job_title", "International Communications Assistant"], ["greetings", "Adipisci natus nihil quis odit minima."], ["summary", "Vel asperiores quas architecto et optio. Debitis doloribus itaque recusandae ipsum consequatur sed. Magni perferendis cumque veritatis sapiente rerum quibusdam dicta."], ["key", "avery_bosco_sr"], ["created_at", "2016-01-27 17:56:46.670864"], ["updated_at", "2016-01-27 17:56:46.670864"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "non"], ["key", "non"], ["created_at", "2016-01-27 17:56:46.673178"], ["updated_at", "2016-01-27 17:56:46.673178"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "velit"], ["key", "velit"], ["created_at", "2016-01-27 17:56:46.675249"], ["updated_at", "2016-01-27 17:56:46.675249"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:56:46.677808"], ["updated_at", "2016-01-27 17:56:46.677808"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Silk Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:56:46.680612"], ["updated_at", "2016-01-27 17:56:46.680612"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Leather Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:56:46.682933"], ["updated_at", "2016-01-27 17:56:46.682933"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Iron Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:56:46.685316"], ["updated_at", "2016-01-27 17:56:46.685316"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Hellen Anderson"], ["job_title", "Human Research Designer"], ["greetings", "Amet veritatis labore quam consequatur nulla voluptatem voluptas."], ["summary", "Atque quo corrupti eveniet omnis. Incidunt sapiente temporibus perspiciatis vitae iste aperiam. Fuga aspernatur aliquam voluptatem doloremque dolore aperiam officiis."], ["key", "hellen_anderson"], ["created_at", "2016-01-27 17:56:46.703407"], ["updated_at", "2016-01-27 17:56:46.703407"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Bronze Bench"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:56:46.706723"], ["updated_at", "2016-01-27 17:56:46.706723"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Wool Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:56:46.711032"], ["updated_at", "2016-01-27 17:56:46.711032"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Pants"], ["site_id", 1], ["created_at", "2016-01-27 17:56:46.713579"], ["updated_at", "2016-01-27 17:56:46.713579"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wool Table"], ["site_id", 1], ["created_at", "2016-01-27 17:56:46.715725"], ["updated_at", "2016-01-27 17:56:46.715725"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (228.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (299.6ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Vida Donnelly"], ["job_title", "Senior Data Associate"], ["greetings", "Occaecati iure rem assumenda reprehenderit qui deserunt."], ["summary", "Qui est neque et velit quo ab. Sapiente suscipit maxime. Eveniet dolorem vero vel aperiam quia quam ad."], ["key", "vida_donnelly"], ["created_at", "2016-01-27 17:56:47.040647"], ["updated_at", "2016-01-27 17:56:47.040647"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Leather Hat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:56:47.044959"], ["updated_at", "2016-01-27 17:56:47.044959"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Aluminum Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:56:47.049372"], ["updated_at", "2016-01-27 17:56:47.049372"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Marble Shirt"], ["site_id", 1], ["created_at", "2016-01-27 17:56:47.053458"], ["updated_at", "2016-01-27 17:56:47.053458"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Concrete Wallet"], ["site_id", 1], ["created_at", "2016-01-27 17:56:47.057029"], ["updated_at", "2016-01-27 17:56:47.057029"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.1ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gillian Kilback"], ["job_title", "Lead Operations Manager"], ["greetings", "Aut sed hic error sit in perspiciatis."], ["summary", "Reprehenderit sed occaecati hic quaerat consequatur voluptas. Qui rerum odio quis rerum officia. Rerum quod iusto maiores."], ["key", "gillian_kilback"], ["created_at", "2016-01-27 17:56:47.089537"], ["updated_at", "2016-01-27 17:56:47.089537"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "enim"], ["key", "enim"], ["created_at", "2016-01-27 17:56:47.093656"], ["updated_at", "2016-01-27 17:56:47.093656"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-27 17:56:47.097275"], ["updated_at", "2016-01-27 17:56:47.097275"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:56:47.101537"], ["updated_at", "2016-01-27 17:56:47.101537"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Linen Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:56:47.106552"], ["updated_at", "2016-01-27 17:56:47.106552"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Leather Clock"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:56:47.112475"], ["updated_at", "2016-01-27 17:56:47.112475"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Concrete Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:56:47.116228"], ["updated_at", "2016-01-27 17:56:47.116228"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (31.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Skylar Schimmel"], ["job_title", "Investor Quality Assistant"], ["greetings", "Magnam assumenda autem ab ratione qui."], ["summary", "Assumenda temporibus fuga et aliquid corrupti illum libero. Eos asperiores incidunt sed nesciunt ipsum sed. Ea tempore nisi rem iusto. Rerum dolorem quasi architecto iste. Ut et ut aliquam totam rerum similique."], ["key", "miss_skylar_schimmel"], ["created_at", "2016-01-27 17:56:47.157678"], ["updated_at", "2016-01-27 17:56:47.157678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-27 17:56:47.160172"], ["updated_at", "2016-01-27 17:56:47.160172"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 17:56:47.163461"], ["updated_at", "2016-01-27 17:56:47.163461"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wooden Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:56:47.166931"], ["updated_at", "2016-01-27 17:56:47.166931"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Silk Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:56:47.171005"], ["updated_at", "2016-01-27 17:56:47.171005"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Steel Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:56:47.174516"], ["updated_at", "2016-01-27 17:56:47.174516"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Cotton Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:56:47.177442"], ["updated_at", "2016-01-27 17:56:47.177442"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (8.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (23.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Hipolito Pollich"], ["job_title", "Legacy Program Associate"], ["greetings", "Voluptatem quisquam sed reprehenderit pariatur."], ["summary", "Sunt nobis aut deserunt est quasi impedit. Vel nulla nam quidem saepe tempore repudiandae aut. Quasi sequi modi id."], ["key", "hipolito_pollich"], ["created_at", "2016-01-27 17:56:47.209606"], ["updated_at", "2016-01-27 17:56:47.209606"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.5ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aric Borer"], ["job_title", "International Integration Strategist"], ["greetings", "Sapiente tempore placeat incidunt blanditiis mollitia quisquam voluptas accusantium."], ["summary", "Et deserunt dolores qui nihil dolorum. Eum aliquid odio incidunt. Velit voluptas praesentium. Architecto blanditiis molestiae. Quo ipsam inventore eos laborum."], ["key", "aric_borer"], ["created_at", "2016-01-27 17:56:47.248590"], ["updated_at", "2016-01-27 17:56:47.248590"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (4.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cristina Turcotte"], ["job_title", "Dynamic Mobility Manager"], ["greetings", "Harum iusto neque incidunt eos quo quia."], ["summary", "Quas velit debitis. Dolor non aut harum quia magnam est. Dolor occaecati fugiat vitae quidem. Quibusdam tempora culpa reiciendis. Excepturi sed sit nobis nemo expedita debitis incidunt."], ["key", "cristina_turcotte"], ["created_at", "2016-01-27 17:56:47.261495"], ["updated_at", "2016-01-27 17:56:47.261495"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sunt"], ["key", "sunt"], ["created_at", "2016-01-27 17:56:47.264719"], ["updated_at", "2016-01-27 17:56:47.264719"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-27 17:56:47.267651"], ["updated_at", "2016-01-27 17:56:47.267651"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wool Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:56:47.270248"], ["updated_at", "2016-01-27 17:56:47.270248"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Granite Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:56:47.273031"], ["updated_at", "2016-01-27 17:56:47.273031"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Iron Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:56:47.275182"], ["updated_at", "2016-01-27 17:56:47.275182"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Leather Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:56:47.278558"], ["updated_at", "2016-01-27 17:56:47.278558"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.4ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (10.3ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (26.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Kristopher Herzog"], ["job_title", "National Quality Agent"], ["greetings", "Inventore ipsum ut quidem alias magnam eius et autem."], ["summary", "Voluptates distinctio enim aut. In placeat aut dolor reprehenderit. Eveniet accusamus qui magnam dolorem."], ["key", "ms_kristopher_herzog"], ["created_at", "2016-01-27 17:58:37.966759"], ["updated_at", "2016-01-27 17:58:37.966759"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:58:37.985999"], ["updated_at", "2016-01-27 17:58:37.985999"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Toni Bernhard"], ["job_title", "Global Applications Planner"], ["greetings", "Eaque est ipsum assumenda explicabo molestiae nemo."], ["summary", "Porro excepturi sint quas aut. Fugit est velit officia omnis est omnis. Deserunt error hic quas."], ["key", "toni_bernhard"], ["created_at", "2016-01-27 17:58:37.991546"], ["updated_at", "2016-01-27 17:58:37.991546"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:58:37.993530"], ["updated_at", "2016-01-27 17:58:37.993530"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Blaze Jerde"], ["job_title", "Customer Solutions Manager"], ["greetings", "Quis architecto voluptatem vitae aspernatur."], ["summary", "Eveniet et et error soluta mollitia vel amet. Suscipit amet recusandae. Quod impedit aut facilis voluptate velit magnam. Nemo officia voluptates debitis voluptatem hic delectus. Beatae molestiae dolore laboriosam."], ["key", "blaze_jerde"], ["created_at", "2016-01-27 17:58:37.996060"], ["updated_at", "2016-01-27 17:58:37.996060"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:58:37.997379"], ["updated_at", "2016-01-27 17:58:37.997379"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Theodore Reichel PhD"], ["job_title", "Internal Mobility Producer"], ["greetings", "Est doloremque minus reiciendis."], ["summary", "Voluptas totam ipsum dolor. Accusantium ea aut. Quidem dolorem molestiae veritatis. Repellat et dignissimos sed voluptas perferendis ipsa."], ["key", "theodore_reichel_phd"], ["created_at", "2016-01-27 17:58:38.003786"], ["updated_at", "2016-01-27 17:58:38.003786"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:58:38.005551"], ["updated_at", "2016-01-27 17:58:38.005551"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jeffry Hettinger Jr."], ["job_title", "Direct Metrics Facilitator"], ["greetings", "Eos sed et et qui ipsa qui et repellendus."], ["summary", "Vitae reprehenderit inventore nostrum porro. Consequuntur eveniet expedita quas ad nostrum. Reiciendis amet consequuntur optio esse."], ["key", "jeffry_hettinger_jr"], ["created_at", "2016-01-27 17:58:38.009581"], ["updated_at", "2016-01-27 17:58:38.009581"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:58:38.011327"], ["updated_at", "2016-01-27 17:58:38.011327"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Reynold Skiles"], ["job_title", "Legacy Solutions Coordinator"], ["greetings", "Quo id quia excepturi deleniti est."], ["summary", "Aut facilis ipsum voluptatum neque. Consequuntur architecto ullam explicabo sint aut. Repellat quasi tempora magni vero ut. Consequatur quaerat veniam id accusamus rerum corporis necessitatibus."], ["key", "reynold_skiles"], ["created_at", "2016-01-27 17:58:38.014766"], ["updated_at", "2016-01-27 17:58:38.014766"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:58:38.017081"], ["updated_at", "2016-01-27 17:58:38.017081"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nestor Bruen"], ["job_title", "Legacy Brand Analyst"], ["greetings", "Dolores architecto et omnis."], ["summary", "Veritatis alias quos sint dolor. Voluptas perspiciatis maxime corporis ullam non delectus. Nisi unde eligendi officiis voluptatem est."], ["key", "nestor_bruen"], ["created_at", "2016-01-27 17:58:38.021474"], ["updated_at", "2016-01-27 17:58:38.021474"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-27 17:58:38.027799"], ["updated_at", "2016-01-27 17:58:38.027799"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 17:58:38.029979"], ["updated_at", "2016-01-27 17:58:38.029979"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Bronze Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:58:38.039012"], ["updated_at", "2016-01-27 17:58:38.039012"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Steel Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:58:38.041401"], ["updated_at", "2016-01-27 17:58:38.041401"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Clock"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:58:38.043192"], ["updated_at", "2016-01-27 17:58:38.043192"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Bronze Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:58:38.044747"], ["updated_at", "2016-01-27 17:58:38.044747"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Fermin Marvin"], ["job_title", "Corporate Marketing Administrator"], ["greetings", "Asperiores nesciunt ut ea sit nihil."], ["summary", "Ratione et minima harum temporibus voluptatem velit laboriosam. Quis fugiat aspernatur. Excepturi praesentium placeat. Ab dolor repellendus et. Facere et tempore."], ["key", "fermin_marvin"], ["created_at", "2016-01-27 17:58:38.067671"], ["updated_at", "2016-01-27 17:58:38.067671"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-27 17:58:38.069669"], ["updated_at", "2016-01-27 17:58:38.069669"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "asperiores"], ["key", "asperiores"], ["created_at", "2016-01-27 17:58:38.071279"], ["updated_at", "2016-01-27 17:58:38.071279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Copper Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:58:38.073026"], ["updated_at", "2016-01-27 17:58:38.073026"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Bronze Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:58:38.074863"], ["updated_at", "2016-01-27 17:58:38.074863"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Cotton Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:58:38.076918"], ["updated_at", "2016-01-27 17:58:38.076918"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:58:38.078685"], ["updated_at", "2016-01-27 17:58:38.078685"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Hector Reilly"], ["job_title", "National Branding Engineer"], ["greetings", "Reprehenderit in et quos."], ["summary", "Ab mollitia sed modi impedit ad ratione nemo. Dolorem earum explicabo temporibus et ea. Sit ipsam occaecati dolores labore tempora. Exercitationem dolorem quae. Amet consequatur quia et unde occaecati maiores."], ["key", "hector_reilly"], ["created_at", "2016-01-27 17:58:38.097905"], ["updated_at", "2016-01-27 17:58:38.097905"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Concrete Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:58:38.100175"], ["updated_at", "2016-01-27 17:58:38.100175"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Steel Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:58:38.102691"], ["updated_at", "2016-01-27 17:58:38.102691"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Silk Pants"], ["site_id", 1], ["created_at", "2016-01-27 17:58:38.104579"], ["updated_at", "2016-01-27 17:58:38.104579"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Bronze Wallet"], ["site_id", 1], ["created_at", "2016-01-27 17:58:38.106110"], ["updated_at", "2016-01-27 17:58:38.106110"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (14.0ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.3ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (229.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (298.8ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ethyl Kautzer"], ["job_title", "Human Security Officer"], ["greetings", "Beatae nemo non ipsam et."], ["summary", "Optio molestiae magni. Minima voluptas porro. Repellat hic officiis rerum voluptates et et illo. Atque hic facere quibusdam ut ullam sequi magni. A optio sed cumque at incidunt."], ["key", "ethyl_kautzer"], ["created_at", "2016-01-27 17:58:38.429717"], ["updated_at", "2016-01-27 17:58:38.429717"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Marble Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:58:38.434423"], ["updated_at", "2016-01-27 17:58:38.434423"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Leather Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:58:38.438880"], ["updated_at", "2016-01-27 17:58:38.438880"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Leather Car"], ["site_id", 1], ["created_at", "2016-01-27 17:58:38.442718"], ["updated_at", "2016-01-27 17:58:38.442718"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Bottle"], ["site_id", 1], ["created_at", "2016-01-27 17:58:38.446418"], ["updated_at", "2016-01-27 17:58:38.446418"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.6ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Max Bartoletti"], ["job_title", "Human Factors Planner"], ["greetings", "Dolores neque fugiat consectetur."], ["summary", "Voluptatem veritatis deserunt quas blanditiis. Sit officiis aperiam unde explicabo consequuntur eveniet dolor. Debitis iure facere quia in et. Vero consequuntur quas repudiandae deleniti perferendis. Autem quod commodi recusandae vero consequatur omnis aut."], ["key", "max_bartoletti"], ["created_at", "2016-01-27 17:58:38.477263"], ["updated_at", "2016-01-27 17:58:38.477263"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "esse"], ["key", "esse"], ["created_at", "2016-01-27 17:58:38.481259"], ["updated_at", "2016-01-27 17:58:38.481259"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "id"], ["key", "id"], ["created_at", "2016-01-27 17:58:38.484898"], ["updated_at", "2016-01-27 17:58:38.484898"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Marble Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:58:38.488839"], ["updated_at", "2016-01-27 17:58:38.488839"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wool Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:58:38.493468"], ["updated_at", "2016-01-27 17:58:38.493468"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Granite Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:58:38.500208"], ["updated_at", "2016-01-27 17:58:38.500208"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:58:38.503530"], ["updated_at", "2016-01-27 17:58:38.503530"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.4ms)  (0.6ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (10.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (30.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Julius Jacobs"], ["job_title", "Dynamic Research Technician"], ["greetings", "Eius sunt qui repudiandae iure ea non."], ["summary", "Aut dignissimos eum earum sed officia. Ut nemo rerum. Distinctio qui assumenda dignissimos aut. Sed est doloremque necessitatibus soluta fugiat et. Qui corrupti qui voluptas."], ["key", "julius_jacobs"], ["created_at", "2016-01-27 17:58:38.543036"], ["updated_at", "2016-01-27 17:58:38.543036"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "repellat"], ["key", "repellat"], ["created_at", "2016-01-27 17:58:38.546198"], ["updated_at", "2016-01-27 17:58:38.546198"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "labore"], ["key", "labore"], ["created_at", "2016-01-27 17:58:38.548182"], ["updated_at", "2016-01-27 17:58:38.548182"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Granite Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:58:38.551714"], ["updated_at", "2016-01-27 17:58:38.551714"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Plastic Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:58:38.555003"], ["updated_at", "2016-01-27 17:58:38.555003"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Aluminum Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:58:38.557746"], ["updated_at", "2016-01-27 17:58:38.557746"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Rubber Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:58:38.560942"], ["updated_at", "2016-01-27 17:58:38.560942"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.8ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (8.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (26.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Emelie Strosin"], ["job_title", "National Group Agent"], ["greetings", "Repellendus necessitatibus eum sit ad voluptas."], ["summary", "Accusamus iusto excepturi. Blanditiis eos molestias quia reiciendis magni et. Quod cum qui. Eius in ea ex quia. Inventore iusto voluptatum accusamus a."], ["key", "emelie_strosin"], ["created_at", "2016-01-27 17:58:38.595554"], ["updated_at", "2016-01-27 17:58:38.595554"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (14.6ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Jean Schuppe"], ["job_title", "Global Usability Technician"], ["greetings", "Consequuntur sequi neque illum ad quia totam nihil."], ["summary", "Enim quidem tempore neque deleniti. Ut autem sit sunt dignissimos odit dolores. Eum assumenda fugit atque at. Expedita quod corporis rerum. Ad impedit ducimus dolor fugit."], ["key", "mrs_jean_schuppe"], ["created_at", "2016-01-27 17:58:38.630641"], ["updated_at", "2016-01-27 17:58:38.630641"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.8ms)  (0.3ms) rollback transaction  (0.6ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sofia Kunde V"], ["job_title", "Forward Solutions Agent"], ["greetings", "Suscipit nihil sit quia tempore eum velit nihil magni."], ["summary", "Voluptas officia ratione eveniet consequatur numquam quia atque. Voluptas odit quam et et. Explicabo dicta est et praesentium. Quis officia debitis qui. Id consequatur ut beatae voluptas vel."], ["key", "sofia_kunde_v"], ["created_at", "2016-01-27 17:58:38.642665"], ["updated_at", "2016-01-27 17:58:38.642665"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "velit"], ["key", "velit"], ["created_at", "2016-01-27 17:58:38.646349"], ["updated_at", "2016-01-27 17:58:38.646349"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptas"], ["key", "voluptas"], ["created_at", "2016-01-27 17:58:38.649786"], ["updated_at", "2016-01-27 17:58:38.649786"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wooden Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:58:38.652375"], ["updated_at", "2016-01-27 17:58:38.652375"]]  (0.5ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Copper Computer"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:58:38.655551"], ["updated_at", "2016-01-27 17:58:38.655551"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wool Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:58:38.659361"], ["updated_at", "2016-01-27 17:58:38.659361"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Linen Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:58:38.662302"], ["updated_at", "2016-01-27 17:58:38.662302"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (13.6ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (30.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Colby Parker DVM"], ["job_title", "Global Functionality Specialist"], ["greetings", "Sint molestiae asperiores sed harum consequatur."], ["summary", "Nemo tempora mollitia minus sit. Magni aspernatur id similique consequatur. Nulla id asperiores repellendus quia unde. Laudantium velit cupiditate et sit optio."], ["key", "colby_parker_dvm"], ["created_at", "2016-01-27 17:58:58.331271"], ["updated_at", "2016-01-27 17:58:58.331271"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:58:58.349529"], ["updated_at", "2016-01-27 17:58:58.349529"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Roma MacGyver Sr."], ["job_title", "Investor Implementation Specialist"], ["greetings", "Earum illo odit aut."], ["summary", "Id dolorem sint eius velit accusantium iure sed. Architecto laborum ut. Laboriosam laborum omnis in libero at molestiae. Quasi consequatur veniam sed. Qui eveniet quo quisquam aut sint pariatur."], ["key", "roma_macgyver_sr"], ["created_at", "2016-01-27 17:58:58.356395"], ["updated_at", "2016-01-27 17:58:58.356395"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:58:58.361487"], ["updated_at", "2016-01-27 17:58:58.361487"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Danial Keeling"], ["job_title", "Internal Quality Developer"], ["greetings", "Consequatur id rerum sed unde mollitia."], ["summary", "Qui ducimus non neque sunt illo quasi. Officiis dolor sed nulla. Tenetur dicta sunt omnis debitis reprehenderit doloribus molestias. Labore iste ratione expedita. Rem quia qui neque numquam."], ["key", "danial_keeling"], ["created_at", "2016-01-27 17:58:58.364894"], ["updated_at", "2016-01-27 17:58:58.364894"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:58:58.366762"], ["updated_at", "2016-01-27 17:58:58.366762"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Angel Ankunding"], ["job_title", "Regional Accountability Developer"], ["greetings", "Cumque et eveniet porro."], ["summary", "Consectetur laboriosam in voluptatibus accusantium quis omnis amet. Ut sunt sed. Tempora odit mollitia sunt nihil fuga ea. Non quia consequatur rem doloremque aut."], ["key", "angel_ankunding"], ["created_at", "2016-01-27 17:58:58.373281"], ["updated_at", "2016-01-27 17:58:58.373281"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:58:58.375374"], ["updated_at", "2016-01-27 17:58:58.375374"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kristoffer Nikolaus"], ["job_title", "Corporate Creative Manager"], ["greetings", "Commodi excepturi ut quia ea corrupti illum aut."], ["summary", "Ut ex quia consequuntur culpa. Ipsam dolorem et consequatur soluta rem. Eum aliquam soluta."], ["key", "kristoffer_nikolaus"], ["created_at", "2016-01-27 17:58:58.380956"], ["updated_at", "2016-01-27 17:58:58.380956"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:58:58.383370"], ["updated_at", "2016-01-27 17:58:58.383370"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Danial Barrows MD"], ["job_title", "Human Tactics Technician"], ["greetings", "Nostrum aut et quo."], ["summary", "Magnam quas et deserunt earum alias rerum voluptatem. Qui optio nostrum asperiores et eaque error unde. Molestiae natus officia veritatis a impedit."], ["key", "danial_barrows_md"], ["created_at", "2016-01-27 17:58:58.389052"], ["updated_at", "2016-01-27 17:58:58.389052"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:58:58.391986"], ["updated_at", "2016-01-27 17:58:58.391986"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Carlee Raynor"], ["job_title", "District Identity Specialist"], ["greetings", "Aut quam sit natus rem."], ["summary", "At possimus ut quia corrupti inventore quaerat. Corrupti in ad est consectetur enim doloremque. Qui dolor officiis cum est et. Eum sapiente porro error ad blanditiis. Quod corrupti consectetur neque."], ["key", "carlee_raynor"], ["created_at", "2016-01-27 17:58:58.396678"], ["updated_at", "2016-01-27 17:58:58.396678"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quis"], ["key", "quis"], ["created_at", "2016-01-27 17:58:58.403326"], ["updated_at", "2016-01-27 17:58:58.403326"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "placeat"], ["key", "placeat"], ["created_at", "2016-01-27 17:58:58.405264"], ["updated_at", "2016-01-27 17:58:58.405264"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:58:58.413416"], ["updated_at", "2016-01-27 17:58:58.413416"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Bronze Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:58:58.416131"], ["updated_at", "2016-01-27 17:58:58.416131"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Plastic Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:58:58.418944"], ["updated_at", "2016-01-27 17:58:58.418944"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Concrete Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:58:58.421451"], ["updated_at", "2016-01-27 17:58:58.421451"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sonia Hauck"], ["job_title", "Customer Intranet Associate"], ["greetings", "Eius eos iusto alias ut laborum labore esse nihil."], ["summary", "Illum voluptatem itaque amet pariatur. Expedita dolore id iusto earum saepe adipisci occaecati. Aliquam ad magnam. Tempore qui et laudantium et et quia."], ["key", "sonia_hauck"], ["created_at", "2016-01-27 17:58:58.445478"], ["updated_at", "2016-01-27 17:58:58.445478"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "temporibus"], ["key", "temporibus"], ["created_at", "2016-01-27 17:58:58.447239"], ["updated_at", "2016-01-27 17:58:58.447239"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sint"], ["key", "sint"], ["created_at", "2016-01-27 17:58:58.450185"], ["updated_at", "2016-01-27 17:58:58.450185"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Iron Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:58:58.452024"], ["updated_at", "2016-01-27 17:58:58.452024"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wooden Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:58:58.454347"], ["updated_at", "2016-01-27 17:58:58.454347"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Leather Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:58:58.456150"], ["updated_at", "2016-01-27 17:58:58.456150"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Silk Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:58:58.457963"], ["updated_at", "2016-01-27 17:58:58.457963"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Charity Prohaska"], ["job_title", "Customer Applications Engineer"], ["greetings", "Assumenda nemo mollitia voluptas."], ["summary", "Unde et possimus dolore autem. Voluptatibus deleniti eaque quisquam eveniet et. Veritatis illum neque ea maiores quis occaecati dolorem. Cumque ad minima recusandae et. Laboriosam praesentium dolores."], ["key", "charity_prohaska"], ["created_at", "2016-01-27 17:58:58.509378"], ["updated_at", "2016-01-27 17:58:58.509378"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Silk Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:58:58.512709"], ["updated_at", "2016-01-27 17:58:58.512709"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Concrete Shirt"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:58:58.515060"], ["updated_at", "2016-01-27 17:58:58.515060"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Rubber Clock"], ["site_id", 1], ["created_at", "2016-01-27 17:58:58.516833"], ["updated_at", "2016-01-27 17:58:58.516833"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Bronze Shirt"], ["site_id", 1], ["created_at", "2016-01-27 17:58:58.518432"], ["updated_at", "2016-01-27 17:58:58.518432"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (4.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (17.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (249.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (318.0ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Vena Macejkovic PhD"], ["job_title", "Direct Accounts Technician"], ["greetings", "Harum libero omnis ducimus."], ["summary", "Et ab sequi deserunt non unde quod porro. Voluptates est impedit in. Consequatur occaecati et. Animi aut quis."], ["key", "vena_macejkovic_phd"], ["created_at", "2016-01-27 17:58:58.861197"], ["updated_at", "2016-01-27 17:58:58.861197"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Silk Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:58:58.865928"], ["updated_at", "2016-01-27 17:58:58.865928"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Iron Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:58:58.870154"], ["updated_at", "2016-01-27 17:58:58.870154"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wool Bag"], ["site_id", 1], ["created_at", "2016-01-27 17:58:58.873705"], ["updated_at", "2016-01-27 17:58:58.873705"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Aluminum Pants"], ["site_id", 1], ["created_at", "2016-01-27 17:58:58.875524"], ["updated_at", "2016-01-27 17:58:58.875524"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (16.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (23.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Eva Lindgren"], ["job_title", "Dynamic Accountability Administrator"], ["greetings", "Consequatur architecto placeat sit in odio."], ["summary", "Ut dolor temporibus quidem eum accusantium hic. Dolorem enim veniam cum libero. Unde saepe ut. Maiores ut sit. Aut consequuntur libero."], ["key", "miss_eva_lindgren"], ["created_at", "2016-01-27 17:58:58.912863"], ["updated_at", "2016-01-27 17:58:58.912863"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "officiis"], ["key", "officiis"], ["created_at", "2016-01-27 17:58:58.917936"], ["updated_at", "2016-01-27 17:58:58.917936"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "explicabo"], ["key", "explicabo"], ["created_at", "2016-01-27 17:58:58.922822"], ["updated_at", "2016-01-27 17:58:58.922822"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wooden Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:58:58.926281"], ["updated_at", "2016-01-27 17:58:58.926281"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Linen Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:58:58.932065"], ["updated_at", "2016-01-27 17:58:58.932065"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Marble Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:58:58.936009"], ["updated_at", "2016-01-27 17:58:58.936009"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Bronze Car"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:58:58.947242"], ["updated_at", "2016-01-27 17:58:58.947242"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.7ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Houston Carter"], ["job_title", "District Intranet Associate"], ["greetings", "Ipsam quia autem molestiae totam delectus quod."], ["summary", "Et corrupti quis aut consequatur cupiditate adipisci atque. In aut ut dolor aut cum est est. Laboriosam sed ut sed. Quae illo qui veniam voluptatem fuga."], ["key", "mrs_houston_carter"], ["created_at", "2016-01-27 17:58:58.981061"], ["updated_at", "2016-01-27 17:58:58.981061"]]  (0.4ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-27 17:58:58.983604"], ["updated_at", "2016-01-27 17:58:58.983604"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "animi"], ["key", "animi"], ["created_at", "2016-01-27 17:58:58.986241"], ["updated_at", "2016-01-27 17:58:58.986241"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Rubber Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:58:58.989618"], ["updated_at", "2016-01-27 17:58:58.989618"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Bronze Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:58:58.994408"], ["updated_at", "2016-01-27 17:58:58.994408"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Rubber Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:58:58.999311"], ["updated_at", "2016-01-27 17:58:58.999311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Bronze Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:58:59.001603"], ["updated_at", "2016-01-27 17:58:59.001603"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (10.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (22.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lee Tremblay V"], ["job_title", "Legacy Identity Strategist"], ["greetings", "Ipsum error numquam minus."], ["summary", "Incidunt esse quo et deleniti. Error ullam assumenda voluptatem neque autem magni. Iste rerum expedita. Labore perferendis magni sint sequi."], ["key", "lee_tremblay_v"], ["created_at", "2016-01-27 17:58:59.034890"], ["updated_at", "2016-01-27 17:58:59.034890"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (13.3ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.7ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sonny Klocko"], ["job_title", "Global Assurance Planner"], ["greetings", "Minima eaque officiis vitae minus dolorem ut est."], ["summary", "Aut blanditiis debitis ut qui non facere et. Eos qui natus neque velit voluptas. Aut alias explicabo totam ut consequuntur."], ["key", "sonny_klocko"], ["created_at", "2016-01-27 17:58:59.068860"], ["updated_at", "2016-01-27 17:58:59.068860"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jaclyn Hickle"], ["job_title", "Global Group Assistant"], ["greetings", "Nostrum rem magnam odit modi et quis."], ["summary", "Suscipit omnis atque. Esse voluptatem ea quas in. Sed aut ipsa quaerat quisquam sit hic eos. Optio laborum est odit voluptatem est. Ipsum et eum et rerum."], ["key", "jaclyn_hickle"], ["created_at", "2016-01-27 17:58:59.080180"], ["updated_at", "2016-01-27 17:58:59.080180"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "vitae"], ["key", "vitae"], ["created_at", "2016-01-27 17:58:59.084016"], ["updated_at", "2016-01-27 17:58:59.084016"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "unde"], ["key", "unde"], ["created_at", "2016-01-27 17:58:59.086201"], ["updated_at", "2016-01-27 17:58:59.086201"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Cotton Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:58:59.089599"], ["updated_at", "2016-01-27 17:58:59.089599"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Iron Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:58:59.100889"], ["updated_at", "2016-01-27 17:58:59.100889"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Concrete Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:58:59.103305"], ["updated_at", "2016-01-27 17:58:59.103305"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wooden Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:58:59.105195"], ["updated_at", "2016-01-27 17:58:59.105195"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.6ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.6ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.7ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Hanna Crist"], ["job_title", "Dynamic Brand Officer"], ["greetings", "Nam consequatur suscipit dolores voluptas ut."], ["summary", "Aut voluptatum est repellat culpa modi maiores. Atque exercitationem eligendi. Totam qui rerum quidem cupiditate consequuntur omnis. Ipsam quisquam sint repellat voluptatem."], ["key", "hanna_crist"], ["created_at", "2016-01-27 17:59:08.968323"], ["updated_at", "2016-01-27 17:59:08.968323"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:59:08.985235"], ["updated_at", "2016-01-27 17:59:08.985235"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Brett Erdman"], ["job_title", "Customer Research Representative"], ["greetings", "Qui non rerum sit dolor officiis."], ["summary", "Voluptas sed suscipit quia et consequuntur fuga accusantium. Animi asperiores corporis amet a consectetur placeat repudiandae. Iusto voluptatibus quo sunt molestiae error voluptatem. Saepe consequatur quia libero id. Consequatur dolorem recusandae consectetur."], ["key", "brett_erdman"], ["created_at", "2016-01-27 17:59:08.991158"], ["updated_at", "2016-01-27 17:59:08.991158"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:59:08.992906"], ["updated_at", "2016-01-27 17:59:08.992906"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Haskell King"], ["job_title", "Chief Response Officer"], ["greetings", "Inventore vero quis facilis qui consequatur non."], ["summary", "Saepe quos eveniet ut aut facilis accusantium. Cum libero dicta impedit. Enim error fuga in autem facere ipsum aut. Optio voluptates et. Accusamus quisquam doloribus minus quam et quis."], ["key", "haskell_king"], ["created_at", "2016-01-27 17:59:08.995414"], ["updated_at", "2016-01-27 17:59:08.995414"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:59:08.996949"], ["updated_at", "2016-01-27 17:59:08.996949"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gretchen Hilpert"], ["job_title", "Direct Infrastructure Agent"], ["greetings", "Quidem ex reprehenderit blanditiis nostrum quae ut recusandae."], ["summary", "Pariatur quaerat vel aut nesciunt minima. Sed eos quo a eos. Voluptatem veritatis fugit. Qui id ut unde placeat. Aperiam et aut velit fuga."], ["key", "gretchen_hilpert"], ["created_at", "2016-01-27 17:59:09.003346"], ["updated_at", "2016-01-27 17:59:09.003346"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:59:09.005149"], ["updated_at", "2016-01-27 17:59:09.005149"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Isabel Durgan"], ["job_title", "Legacy Metrics Supervisor"], ["greetings", "Et nihil suscipit itaque expedita qui inventore ut quis."], ["summary", "Et adipisci ipsam nulla vel sit molestiae quam. Voluptatum a quia reiciendis veritatis sed. Rerum mollitia tempora ut qui quis consequuntur. Molestiae vero id amet voluptas. Ut est ipsam."], ["key", "isabel_durgan"], ["created_at", "2016-01-27 17:59:09.008769"], ["updated_at", "2016-01-27 17:59:09.008769"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:59:09.010876"], ["updated_at", "2016-01-27 17:59:09.010876"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Holden Moore"], ["job_title", "Dynamic Web Planner"], ["greetings", "Tempora est ab error cumque illo officiis."], ["summary", "Optio quis esse vero corrupti sunt consequuntur quas. Iusto est qui maxime nulla laudantium. Et omnis voluptate sint et libero. Ipsum natus iste sit. Quia asperiores ea itaque labore accusantium."], ["key", "holden_moore"], ["created_at", "2016-01-27 17:59:09.014974"], ["updated_at", "2016-01-27 17:59:09.014974"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:59:09.016741"], ["updated_at", "2016-01-27 17:59:09.016741"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Frida Upton"], ["job_title", "Lead Usability Analyst"], ["greetings", "Possimus ipsa molestias aliquid non et nemo ipsam atque."], ["summary", "Ullam excepturi quaerat quo provident aut. Fugit fuga quos dolores. Repellendus in quis dolor. Aliquam dolores distinctio deleniti ea maiores. Cupiditate inventore aut quam."], ["key", "frida_upton"], ["created_at", "2016-01-27 17:59:09.020893"], ["updated_at", "2016-01-27 17:59:09.020893"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "hic"], ["key", "hic"], ["created_at", "2016-01-27 17:59:09.026115"], ["updated_at", "2016-01-27 17:59:09.026115"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "esse"], ["key", "esse"], ["created_at", "2016-01-27 17:59:09.027770"], ["updated_at", "2016-01-27 17:59:09.027770"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Cotton Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:59:09.034635"], ["updated_at", "2016-01-27 17:59:09.034635"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Aluminum Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:59:09.036564"], ["updated_at", "2016-01-27 17:59:09.036564"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Linen Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:59:09.039398"], ["updated_at", "2016-01-27 17:59:09.039398"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Granite Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:59:09.041977"], ["updated_at", "2016-01-27 17:59:09.041977"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Florida Farrell"], ["job_title", "Chief Intranet Consultant"], ["greetings", "Sit nemo aut aliquid."], ["summary", "Eum beatae tempore veritatis nemo voluptatem quibusdam. Voluptates eius quasi maxime. Eos molestiae error voluptatem magnam ullam consequatur."], ["key", "ms_florida_farrell"], ["created_at", "2016-01-27 17:59:09.063864"], ["updated_at", "2016-01-27 17:59:09.063864"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-27 17:59:09.065621"], ["updated_at", "2016-01-27 17:59:09.065621"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consectetur"], ["key", "consectetur"], ["created_at", "2016-01-27 17:59:09.067299"], ["updated_at", "2016-01-27 17:59:09.067299"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Iron Computer"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:59:09.069135"], ["updated_at", "2016-01-27 17:59:09.069135"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:59:09.070947"], ["updated_at", "2016-01-27 17:59:09.070947"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Iron Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:59:09.072809"], ["updated_at", "2016-01-27 17:59:09.072809"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wooden Car"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:59:09.074423"], ["updated_at", "2016-01-27 17:59:09.074423"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kennith Heller"], ["job_title", "Human Configuration Consultant"], ["greetings", "Occaecati sit quia voluptate iste rem in eaque."], ["summary", "Veniam praesentium cum reprehenderit. Doloribus est deserunt quasi ratione consequatur rerum sapiente. Voluptatem fugiat velit. Exercitationem sit provident ut. Veritatis illum vitae."], ["key", "kennith_heller"], ["created_at", "2016-01-27 17:59:09.092836"], ["updated_at", "2016-01-27 17:59:09.092836"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:59:09.094860"], ["updated_at", "2016-01-27 17:59:09.094860"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wooden Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:59:09.096741"], ["updated_at", "2016-01-27 17:59:09.096741"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Lamp"], ["site_id", 1], ["created_at", "2016-01-27 17:59:09.098977"], ["updated_at", "2016-01-27 17:59:09.098977"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Silk Car"], ["site_id", 1], ["created_at", "2016-01-27 17:59:09.100769"], ["updated_at", "2016-01-27 17:59:09.100769"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (14.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (224.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (290.2ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kaylie King"], ["job_title", "Central Assurance Administrator"], ["greetings", "Quisquam non vero eum ducimus qui architecto laborum aut."], ["summary", "Nam est porro. Sit ut tempora officia quam. Voluptas vero voluptate excepturi quaerat occaecati. Quo dolorem rerum dolores. Voluptas sed consequatur."], ["key", "kaylie_king"], ["created_at", "2016-01-27 17:59:09.416408"], ["updated_at", "2016-01-27 17:59:09.416408"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:59:09.421044"], ["updated_at", "2016-01-27 17:59:09.421044"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Linen Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:59:09.424647"], ["updated_at", "2016-01-27 17:59:09.424647"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wooden Gloves"], ["site_id", 1], ["created_at", "2016-01-27 17:59:09.426540"], ["updated_at", "2016-01-27 17:59:09.426540"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Aluminum Chair"], ["site_id", 1], ["created_at", "2016-01-27 17:59:09.428261"], ["updated_at", "2016-01-27 17:59:09.428261"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bartholome Torp V"], ["job_title", "Dynamic Web Architect"], ["greetings", "Aliquid doloremque laboriosam doloribus."], ["summary", "Et qui non eos cum cupiditate ab exercitationem. Doloremque non nihil laudantium consectetur et amet odit. Veritatis aperiam pariatur et. Eum dolorum atque."], ["key", "bartholome_torp_v"], ["created_at", "2016-01-27 17:59:09.460098"], ["updated_at", "2016-01-27 17:59:09.460098"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 17:59:09.464007"], ["updated_at", "2016-01-27 17:59:09.464007"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quo"], ["key", "quo"], ["created_at", "2016-01-27 17:59:09.467434"], ["updated_at", "2016-01-27 17:59:09.467434"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Paper Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:59:09.471864"], ["updated_at", "2016-01-27 17:59:09.471864"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Copper Plate"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:59:09.475169"], ["updated_at", "2016-01-27 17:59:09.475169"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Rubber Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:59:09.478299"], ["updated_at", "2016-01-27 17:59:09.478299"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Cotton Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:59:09.483977"], ["updated_at", "2016-01-27 17:59:09.483977"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (9.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (39.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mikayla Hartmann"], ["job_title", "Central Mobility Planner"], ["greetings", "Officia et exercitationem tenetur ab fugiat."], ["summary", "Et odit maiores repellendus ut non ut. Eum nihil accusantium ut quia consequatur sed sequi. Velit nisi ut. Consectetur eaque voluptatem nam. Qui ad quasi vitae provident accusantium est."], ["key", "mikayla_hartmann"], ["created_at", "2016-01-27 17:59:09.534235"], ["updated_at", "2016-01-27 17:59:09.534235"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "unde"], ["key", "unde"], ["created_at", "2016-01-27 17:59:09.537148"], ["updated_at", "2016-01-27 17:59:09.537148"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quis"], ["key", "quis"], ["created_at", "2016-01-27 17:59:09.539789"], ["updated_at", "2016-01-27 17:59:09.539789"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Copper Computer"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:59:09.542721"], ["updated_at", "2016-01-27 17:59:09.542721"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Rubber Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:59:09.545722"], ["updated_at", "2016-01-27 17:59:09.545722"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Linen Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:59:09.548459"], ["updated_at", "2016-01-27 17:59:09.548459"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Linen Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:59:09.551146"], ["updated_at", "2016-01-27 17:59:09.551146"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.9ms) Portfolio::SiteItemCategory Load (0.5ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.6ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (22.5ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Taya Stokes"], ["job_title", "Forward Factors Coordinator"], ["greetings", "Facere necessitatibus amet voluptatem."], ["summary", "Ut ipsam quis. Laborum expedita facilis magni dolor praesentium. Aut et voluptatem praesentium repudiandae. Dolorem nostrum rerum repudiandae rem."], ["key", "taya_stokes"], ["created_at", "2016-01-27 17:59:09.583459"], ["updated_at", "2016-01-27 17:59:09.583459"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.0ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (18.7ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Oswald Watsica"], ["job_title", "International Infrastructure Liaison"], ["greetings", "Suscipit voluptas incidunt quia."], ["summary", "Maiores dolorum vel sed exercitationem. Veritatis et possimus quia enim distinctio. Aliquid nihil sed. Sit non et qui. Cum debitis fugit dolorum fugiat vel."], ["key", "oswald_watsica"], ["created_at", "2016-01-27 17:59:09.625740"], ["updated_at", "2016-01-27 17:59:09.625740"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (4.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Fredy Ankunding"], ["job_title", "Chief Security Representative"], ["greetings", "Excepturi impedit ut earum voluptatem assumenda rerum labore."], ["summary", "Nisi autem et a sint aut. Rerum vitae quisquam itaque quis cum eius. Voluptatem eius quia iusto."], ["key", "fredy_ankunding"], ["created_at", "2016-01-27 17:59:09.638927"], ["updated_at", "2016-01-27 17:59:09.638927"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "alias"], ["key", "alias"], ["created_at", "2016-01-27 17:59:09.642129"], ["updated_at", "2016-01-27 17:59:09.642129"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "atque"], ["key", "atque"], ["created_at", "2016-01-27 17:59:09.644560"], ["updated_at", "2016-01-27 17:59:09.644560"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Bronze Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:59:09.647184"], ["updated_at", "2016-01-27 17:59:09.647184"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Copper Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:59:09.649993"], ["updated_at", "2016-01-27 17:59:09.649993"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Marble Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:59:09.652225"], ["updated_at", "2016-01-27 17:59:09.652225"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Rubber Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:59:09.656246"], ["updated_at", "2016-01-27 17:59:09.656246"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (11.6ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (27.5ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lenora Barton"], ["job_title", "Global Data Consultant"], ["greetings", "Animi dicta tempora quia nihil hic."], ["summary", "Aut molestiae necessitatibus. Temporibus cupiditate numquam ea. Eius fugiat aut ipsam architecto dolore. Deserunt autem omnis autem nostrum asperiores. Assumenda tenetur nihil eum est."], ["key", "lenora_barton"], ["created_at", "2016-01-27 17:59:35.724311"], ["updated_at", "2016-01-27 17:59:35.724311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:59:35.740608"], ["updated_at", "2016-01-27 17:59:35.740608"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Helene Runte MD"], ["job_title", "Dynamic Optimization Representative"], ["greetings", "Et veritatis dolore eligendi magni ut deserunt."], ["summary", "Quidem assumenda non. Iusto et ipsam nesciunt qui. Ducimus et hic blanditiis."], ["key", "helene_runte_md"], ["created_at", "2016-01-27 17:59:35.746291"], ["updated_at", "2016-01-27 17:59:35.746291"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:59:35.748570"], ["updated_at", "2016-01-27 17:59:35.748570"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Percy Ruecker"], ["job_title", "Lead Response Director"], ["greetings", "Totam itaque et ducimus in aspernatur quia autem."], ["summary", "Recusandae ad ullam expedita ipsa. Sed quaerat iure facilis exercitationem ex ut quo. Iure hic itaque voluptatem. Est qui qui voluptatum."], ["key", "ms_percy_ruecker"], ["created_at", "2016-01-27 17:59:35.751226"], ["updated_at", "2016-01-27 17:59:35.751226"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 17:59:35.752988"], ["updated_at", "2016-01-27 17:59:35.752988"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jordane Koepp"], ["job_title", "Direct Paradigm Supervisor"], ["greetings", "Voluptatem atque corporis itaque ut provident officia dolor ab."], ["summary", "Voluptates placeat alias dicta error reiciendis quaerat. Minima aliquid ut reiciendis nesciunt. Distinctio inventore repellat aut. Nostrum quis debitis illum. Esse fugiat omnis voluptatem nihil magni ullam nobis."], ["key", "jordane_koepp"], ["created_at", "2016-01-27 17:59:35.759209"], ["updated_at", "2016-01-27 17:59:35.759209"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:59:35.761313"], ["updated_at", "2016-01-27 17:59:35.761313"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Casey Will"], ["job_title", "Regional Directives Associate"], ["greetings", "Earum perspiciatis atque voluptate eligendi magnam quod."], ["summary", "Quaerat aut et ea odio ut. Placeat veniam in omnis. Molestiae itaque dolorem provident. Soluta sit qui labore sapiente suscipit sed similique."], ["key", "casey_will"], ["created_at", "2016-01-27 17:59:35.765300"], ["updated_at", "2016-01-27 17:59:35.765300"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:59:35.767201"], ["updated_at", "2016-01-27 17:59:35.767201"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Lowell Jacobi"], ["job_title", "Regional Interactions Orchestrator"], ["greetings", "Ut libero autem quis enim qui necessitatibus minima veniam."], ["summary", "Possimus sapiente veritatis non debitis dolor illum. Praesentium numquam voluptatem quis sed itaque tenetur consequatur. Qui ut repellat."], ["key", "mrs_lowell_jacobi"], ["created_at", "2016-01-27 17:59:35.771452"], ["updated_at", "2016-01-27 17:59:35.771452"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 17:59:35.773315"], ["updated_at", "2016-01-27 17:59:35.773315"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Brennan Okuneva"], ["job_title", "International Functionality Associate"], ["greetings", "Quis velit incidunt magnam velit natus rerum reiciendis."], ["summary", "Quo nihil dicta deleniti impedit excepturi dolorum vel. Sapiente amet et sed enim incidunt. Voluptatem hic est asperiores enim omnis qui in."], ["key", "brennan_okuneva"], ["created_at", "2016-01-27 17:59:35.777123"], ["updated_at", "2016-01-27 17:59:35.777123"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "itaque"], ["key", "itaque"], ["created_at", "2016-01-27 17:59:35.782194"], ["updated_at", "2016-01-27 17:59:35.782194"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "enim"], ["key", "enim"], ["created_at", "2016-01-27 17:59:35.783914"], ["updated_at", "2016-01-27 17:59:35.783914"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Leather Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:59:35.790751"], ["updated_at", "2016-01-27 17:59:35.790751"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Cotton Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:59:35.793090"], ["updated_at", "2016-01-27 17:59:35.793090"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Leather Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:59:35.795109"], ["updated_at", "2016-01-27 17:59:35.795109"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Granite Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:59:35.798080"], ["updated_at", "2016-01-27 17:59:35.798080"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Devonte Bruen DVM"], ["job_title", "Customer Optimization Coordinator"], ["greetings", "Error enim dolor animi omnis non accusamus vel."], ["summary", "Quisquam ullam a modi quaerat doloribus. Sed omnis vel. Et qui accusamus."], ["key", "devonte_bruen_dvm"], ["created_at", "2016-01-27 17:59:35.820032"], ["updated_at", "2016-01-27 17:59:35.820032"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quod"], ["key", "quod"], ["created_at", "2016-01-27 17:59:35.821822"], ["updated_at", "2016-01-27 17:59:35.821822"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-27 17:59:35.823304"], ["updated_at", "2016-01-27 17:59:35.823304"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wool Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:59:35.824964"], ["updated_at", "2016-01-27 17:59:35.824964"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Leather Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:59:35.826636"], ["updated_at", "2016-01-27 17:59:35.826636"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wooden Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:59:35.828498"], ["updated_at", "2016-01-27 17:59:35.828498"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Wool Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:59:35.830096"], ["updated_at", "2016-01-27 17:59:35.830096"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Fred Koss"], ["job_title", "Dynamic Assurance Designer"], ["greetings", "Ut delectus nulla aut nostrum."], ["summary", "Molestias et ut ea. Incidunt debitis consectetur velit blanditiis ut qui. Error ut unde quia."], ["key", "fred_koss"], ["created_at", "2016-01-27 17:59:35.879107"], ["updated_at", "2016-01-27 17:59:35.879107"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Bronze Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:59:35.881832"], ["updated_at", "2016-01-27 17:59:35.881832"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Bronze Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:59:35.884478"], ["updated_at", "2016-01-27 17:59:35.884478"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Copper Car"], ["site_id", 1], ["created_at", "2016-01-27 17:59:35.886467"], ["updated_at", "2016-01-27 17:59:35.886467"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Cotton Gloves"], ["site_id", 1], ["created_at", "2016-01-27 17:59:35.887929"], ["updated_at", "2016-01-27 17:59:35.887929"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (241.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (310.0ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Javier Rosenbaum"], ["job_title", "Direct Security Agent"], ["greetings", "Repudiandae asperiores veritatis dolor reprehenderit eveniet."], ["summary", "Aperiam at sed porro nihil mollitia aliquam ea. Velit pariatur accusantium aut inventore praesentium officiis ea. Ullam dolor neque perspiciatis et molestiae. Natus recusandae odit."], ["key", "javier_rosenbaum"], ["created_at", "2016-01-27 17:59:36.222431"], ["updated_at", "2016-01-27 17:59:36.222431"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Plastic Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:59:36.226391"], ["updated_at", "2016-01-27 17:59:36.226391"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Paper Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 17:59:36.228674"], ["updated_at", "2016-01-27 17:59:36.228674"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Steel Wallet"], ["site_id", 1], ["created_at", "2016-01-27 17:59:36.231066"], ["updated_at", "2016-01-27 17:59:36.231066"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Paper Bag"], ["site_id", 1], ["created_at", "2016-01-27 17:59:36.232851"], ["updated_at", "2016-01-27 17:59:36.232851"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.2ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (14.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (23.4ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Joshuah Prohaska"], ["job_title", "Human Directives Specialist"], ["greetings", "Et hic dolore omnis laboriosam rerum deserunt."], ["summary", "Sint sapiente nam sunt rerum ipsam quo et. Voluptas laborum quis commodi sit. Voluptas pariatur sed. Voluptatum ea dolor voluptatibus et excepturi facilis. Dolor qui et sequi eos nesciunt debitis."], ["key", "joshuah_prohaska"], ["created_at", "2016-01-27 17:59:36.272885"], ["updated_at", "2016-01-27 17:59:36.272885"]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "deserunt"], ["key", "deserunt"], ["created_at", "2016-01-27 17:59:36.276223"], ["updated_at", "2016-01-27 17:59:36.276223"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aperiam"], ["key", "aperiam"], ["created_at", "2016-01-27 17:59:36.278909"], ["updated_at", "2016-01-27 17:59:36.278909"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:59:36.281875"], ["updated_at", "2016-01-27 17:59:36.281875"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Iron Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:59:36.287567"], ["updated_at", "2016-01-27 17:59:36.287567"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wooden Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:59:36.307215"], ["updated_at", "2016-01-27 17:59:36.307215"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Concrete Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:59:36.311949"], ["updated_at", "2016-01-27 17:59:36.311949"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.5ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (24.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Peter Satterfield DVM"], ["job_title", "Chief Brand Officer"], ["greetings", "Et ipsam vel odio cum culpa minima reprehenderit doloremque."], ["summary", "Maiores laboriosam aut eum natus in eos. Vel dignissimos aspernatur et eum quia qui atque. Non cumque odio tempora molestias est explicabo porro."], ["key", "peter_satterfield_dvm"], ["created_at", "2016-01-27 17:59:36.346425"], ["updated_at", "2016-01-27 17:59:36.346425"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "accusamus"], ["key", "accusamus"], ["created_at", "2016-01-27 17:59:36.349335"], ["updated_at", "2016-01-27 17:59:36.349335"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "omnis"], ["key", "omnis"], ["created_at", "2016-01-27 17:59:36.351939"], ["updated_at", "2016-01-27 17:59:36.351939"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:59:36.355418"], ["updated_at", "2016-01-27 17:59:36.355418"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Paper Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:59:36.358772"], ["updated_at", "2016-01-27 17:59:36.358772"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Granite Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:59:36.362073"], ["updated_at", "2016-01-27 17:59:36.362073"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Bronze Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:59:36.364742"], ["updated_at", "2016-01-27 17:59:36.364742"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.6ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Delta Muller"], ["job_title", "Internal Group Developer"], ["greetings", "Omnis alias est doloribus."], ["summary", "Et dicta officiis quaerat nesciunt eveniet sequi natus. Numquam possimus enim totam tempore voluptatem ut non. Inventore ducimus veniam aut sunt qui."], ["key", "delta_muller"], ["created_at", "2016-01-27 17:59:36.394254"], ["updated_at", "2016-01-27 17:59:36.394254"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (12.6ms)  (0.4ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Belle Schiller IV"], ["job_title", "National Implementation Manager"], ["greetings", "Ducimus autem et vel."], ["summary", "Dolorem commodi vel omnis iure. Omnis in sit quibusdam quia eaque. Quo autem illo quia a et. Natus vero et quod dicta."], ["key", "belle_schiller_iv"], ["created_at", "2016-01-27 17:59:36.427994"], ["updated_at", "2016-01-27 17:59:36.427994"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.7ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nicklaus Smitham III"], ["job_title", "International Solutions Assistant"], ["greetings", "Totam rerum animi cumque."], ["summary", "Numquam possimus ut error. Ipsam deserunt ex quidem consequatur quam provident architecto. Repellat voluptate sunt. Dolorem qui iusto exercitationem sunt non alias recusandae."], ["key", "nicklaus_smitham_iii"], ["created_at", "2016-01-27 17:59:36.441393"], ["updated_at", "2016-01-27 17:59:36.441393"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 17:59:36.444386"], ["updated_at", "2016-01-27 17:59:36.444386"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "beatae"], ["key", "beatae"], ["created_at", "2016-01-27 17:59:36.448362"], ["updated_at", "2016-01-27 17:59:36.448362"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Concrete Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 17:59:36.451822"], ["updated_at", "2016-01-27 17:59:36.451822"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wooden Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 17:59:36.462726"], ["updated_at", "2016-01-27 17:59:36.462726"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Copper Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 17:59:36.466426"], ["updated_at", "2016-01-27 17:59:36.466426"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wool Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 17:59:36.468551"], ["updated_at", "2016-01-27 17:59:36.468551"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.5ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Keshaun Stracke"], ["job_title", "Future Accounts Developer"], ["greetings", "Excepturi velit aspernatur corrupti est laudantium dolorem modi."], ["summary", "Voluptatum non assumenda sit saepe. Saepe nihil eum molestiae ut quia. Dolorem inventore eaque quas ut. Eligendi assumenda facere placeat perspiciatis cum dolorem."], ["key", "ms_keshaun_stracke"], ["created_at", "2016-01-27 18:00:41.893429"], ["updated_at", "2016-01-27 18:00:41.893429"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:00:41.909244"], ["updated_at", "2016-01-27 18:00:41.909244"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Elza Gerlach"], ["job_title", "Legacy Infrastructure Analyst"], ["greetings", "Sit qui iusto sunt mollitia et voluptas a."], ["summary", "Odit id nesciunt adipisci tenetur ab aut. Nisi architecto omnis non. Eligendi at sunt et veritatis autem placeat voluptate. Alias culpa magnam nisi ut non quisquam. Delectus optio architecto cupiditate voluptatem nihil reprehenderit culpa."], ["key", "elza_gerlach"], ["created_at", "2016-01-27 18:00:41.915153"], ["updated_at", "2016-01-27 18:00:41.915153"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:00:41.917168"], ["updated_at", "2016-01-27 18:00:41.917168"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Maxine Torp"], ["job_title", "Future Quality Executive"], ["greetings", "Consequatur vel id maiores reprehenderit laborum et accusantium."], ["summary", "Sunt omnis exercitationem minima quisquam maxime. Quo laborum est enim. Quam vero qui inventore laudantium doloremque minus nihil."], ["key", "maxine_torp"], ["created_at", "2016-01-27 18:00:41.919605"], ["updated_at", "2016-01-27 18:00:41.919605"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 18:00:41.920871"], ["updated_at", "2016-01-27 18:00:41.920871"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jerry Mayer"], ["job_title", "Global Accounts Manager"], ["greetings", "Impedit et molestiae error iure tempore eveniet veritatis."], ["summary", "Consequatur reprehenderit ipsa excepturi. Odio saepe libero non hic vitae inventore. Saepe est et architecto alias. Et dolorem voluptates dolore atque harum qui et. Velit odit a."], ["key", "jerry_mayer"], ["created_at", "2016-01-27 18:00:41.927789"], ["updated_at", "2016-01-27 18:00:41.927789"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:00:41.929477"], ["updated_at", "2016-01-27 18:00:41.929477"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Orpha Prohaska"], ["job_title", "Senior Operations Director"], ["greetings", "Id atque et explicabo placeat dolor."], ["summary", "Quo voluptatum nemo cumque atque. Aliquid eaque ducimus et. Corporis reiciendis consequatur id. Ipsa fugiat sit nihil."], ["key", "orpha_prohaska"], ["created_at", "2016-01-27 18:00:41.933818"], ["updated_at", "2016-01-27 18:00:41.933818"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:00:41.935606"], ["updated_at", "2016-01-27 18:00:41.935606"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nikita Corwin PhD"], ["job_title", "Dynamic Infrastructure Coordinator"], ["greetings", "Dolores est aut modi amet omnis sit voluptatem."], ["summary", "Sed fugiat culpa neque ea quam sint. Non aut adipisci omnis cupiditate necessitatibus quo voluptas. Non natus aut recusandae ipsum tenetur. Accusamus aliquam quos. Expedita aut autem quia non illum voluptatem."], ["key", "nikita_corwin_phd"], ["created_at", "2016-01-27 18:00:41.939823"], ["updated_at", "2016-01-27 18:00:41.939823"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:00:41.941602"], ["updated_at", "2016-01-27 18:00:41.941602"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sadye Orn II"], ["job_title", "Direct Applications Designer"], ["greetings", "Qui quas exercitationem sapiente veritatis consequuntur est voluptatibus."], ["summary", "Enim autem rerum harum velit nihil aliquam. Sit aliquid ut amet et. Exercitationem ut aliquid ut."], ["key", "sadye_orn_ii"], ["created_at", "2016-01-27 18:00:41.945615"], ["updated_at", "2016-01-27 18:00:41.945615"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nisi"], ["key", "nisi"], ["created_at", "2016-01-27 18:00:41.950958"], ["updated_at", "2016-01-27 18:00:41.950958"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-27 18:00:41.952713"], ["updated_at", "2016-01-27 18:00:41.952713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Wooden Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:00:41.960341"], ["updated_at", "2016-01-27 18:00:41.960341"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Granite Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:00:41.963662"], ["updated_at", "2016-01-27 18:00:41.963662"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Marble Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:00:41.965362"], ["updated_at", "2016-01-27 18:00:41.965362"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Steel Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:00:41.967273"], ["updated_at", "2016-01-27 18:00:41.967273"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Walton Schmidt Jr."], ["job_title", "Dynamic Security Executive"], ["greetings", "Pariatur qui consectetur enim corrupti hic dolores eveniet harum."], ["summary", "Nam hic voluptatum quo explicabo. Ullam voluptate amet quisquam animi nobis in. Est ipsa dignissimos cum. Vel blanditiis tempore. Facilis nulla earum animi voluptatem autem dignissimos."], ["key", "walton_schmidt_jr"], ["created_at", "2016-01-27 18:00:41.992846"], ["updated_at", "2016-01-27 18:00:41.992846"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "perferendis"], ["key", "perferendis"], ["created_at", "2016-01-27 18:00:41.994976"], ["updated_at", "2016-01-27 18:00:41.994976"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsa"], ["key", "ipsa"], ["created_at", "2016-01-27 18:00:41.996435"], ["updated_at", "2016-01-27 18:00:41.996435"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Leather Computer"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:00:41.998153"], ["updated_at", "2016-01-27 18:00:41.998153"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:00:42.000161"], ["updated_at", "2016-01-27 18:00:42.000161"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Leather Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:00:42.002137"], ["updated_at", "2016-01-27 18:00:42.002137"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:00:42.003950"], ["updated_at", "2016-01-27 18:00:42.003950"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Annetta Dietrich PhD"], ["job_title", "Chief Data Engineer"], ["greetings", "Fugiat repudiandae aut itaque."], ["summary", "Aperiam magnam quos. Hic doloremque alias suscipit dignissimos. Illo delectus ut magnam repudiandae quae. Beatae accusantium commodi voluptate. Excepturi voluptatem sit."], ["key", "annetta_dietrich_phd"], ["created_at", "2016-01-27 18:00:42.069946"], ["updated_at", "2016-01-27 18:00:42.069946"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Wool Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:00:42.074071"], ["updated_at", "2016-01-27 18:00:42.074071"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Cotton Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:00:42.076783"], ["updated_at", "2016-01-27 18:00:42.076783"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Linen Knife"], ["site_id", 1], ["created_at", "2016-01-27 18:00:42.078521"], ["updated_at", "2016-01-27 18:00:42.078521"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wool Chair"], ["site_id", 1], ["created_at", "2016-01-27 18:00:42.080085"], ["updated_at", "2016-01-27 18:00:42.080085"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (4.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (17.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (238.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (312.5ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jude Mosciski I"], ["job_title", "Human Solutions Specialist"], ["greetings", "Sed est excepturi quidem quibusdam."], ["summary", "Debitis dolor sapiente. Dignissimos dolorem adipisci voluptatibus ipsa doloribus. Vero voluptatibus nisi qui nihil voluptatem sed nostrum. Est assumenda quam cum ut laudantium non. Non et ducimus."], ["key", "jude_mosciski_i"], ["created_at", "2016-01-27 18:00:42.414622"], ["updated_at", "2016-01-27 18:00:42.414622"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Leather Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:00:42.417614"], ["updated_at", "2016-01-27 18:00:42.417614"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wool Bench"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:00:42.420538"], ["updated_at", "2016-01-27 18:00:42.420538"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Marble Computer"], ["site_id", 1], ["created_at", "2016-01-27 18:00:42.423253"], ["updated_at", "2016-01-27 18:00:42.423253"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wooden Pants"], ["site_id", 1], ["created_at", "2016-01-27 18:00:42.426078"], ["updated_at", "2016-01-27 18:00:42.426078"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (9.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Michael Mann PhD"], ["job_title", "Dynamic Identity Executive"], ["greetings", "Rerum a maiores consequuntur culpa."], ["summary", "Qui et quo natus provident. Illum impedit dicta neque facilis. Et voluptatem et corrupti temporibus occaecati ab ducimus."], ["key", "michael_mann_phd"], ["created_at", "2016-01-27 18:00:42.448280"], ["updated_at", "2016-01-27 18:00:42.448280"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "provident"], ["key", "provident"], ["created_at", "2016-01-27 18:00:42.450766"], ["updated_at", "2016-01-27 18:00:42.450766"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptas"], ["key", "voluptas"], ["created_at", "2016-01-27 18:00:42.453875"], ["updated_at", "2016-01-27 18:00:42.453875"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Steel Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:00:42.459554"], ["updated_at", "2016-01-27 18:00:42.459554"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Silk Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:00:42.462886"], ["updated_at", "2016-01-27 18:00:42.462886"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Bronze Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:00:42.466006"], ["updated_at", "2016-01-27 18:00:42.466006"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Steel Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:00:42.475444"], ["updated_at", "2016-01-27 18:00:42.475444"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.5ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.9ms) Portfolio::SiteItemCategory Load (0.5ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sigurd Ebert Jr."], ["job_title", "National Communications Planner"], ["greetings", "Sed dolores sit illo."], ["summary", "Hic aut vero incidunt. Et omnis sit incidunt perspiciatis veritatis. Quod qui aut quisquam optio ratione. Optio sit earum consequatur itaque qui quam. Qui ea deserunt est alias expedita repellat occaecati."], ["key", "sigurd_ebert_jr"], ["created_at", "2016-01-27 18:00:42.505458"], ["updated_at", "2016-01-27 18:00:42.505458"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "minima"], ["key", "minima"], ["created_at", "2016-01-27 18:00:42.508069"], ["updated_at", "2016-01-27 18:00:42.508069"]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "distinctio"], ["key", "distinctio"], ["created_at", "2016-01-27 18:00:42.509925"], ["updated_at", "2016-01-27 18:00:42.509925"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Concrete Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:00:42.513236"], ["updated_at", "2016-01-27 18:00:42.513236"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Leather Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:00:42.516641"], ["updated_at", "2016-01-27 18:00:42.516641"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Aluminum Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:00:42.520177"], ["updated_at", "2016-01-27 18:00:42.520177"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Rubber Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:00:42.523102"], ["updated_at", "2016-01-27 18:00:42.523102"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.8ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (17.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Elinor King"], ["job_title", "Lead Research Administrator"], ["greetings", "Rerum maiores aliquid quam vitae quibusdam sint."], ["summary", "Minima nobis modi. Aut consequatur est explicabo nisi esse vero qui. Illum distinctio aut eum provident rerum amet."], ["key", "elinor_king"], ["created_at", "2016-01-27 18:00:42.550733"], ["updated_at", "2016-01-27 18:00:42.550733"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (13.7ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Destinee Ebert"], ["job_title", "Legacy Identity Consultant"], ["greetings", "Et et perferendis voluptatum."], ["summary", "Maxime eveniet sed iure veritatis minus praesentium. Omnis et deleniti est ea. Culpa ad voluptatem. Libero nihil possimus sunt. Et quia exercitationem saepe et."], ["key", "destinee_ebert"], ["created_at", "2016-01-27 18:00:42.584633"], ["updated_at", "2016-01-27 18:00:42.584633"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (4.9ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tatyana McLaughlin"], ["job_title", "Dynamic Paradigm Engineer"], ["greetings", "Dolorem sit facere repellat."], ["summary", "Doloribus nesciunt consectetur cupiditate. Autem amet maxime hic adipisci qui nam. Dolorem odit cum rerum ducimus natus nobis voluptas. Omnis aliquam cupiditate dolores. Et molestiae facilis culpa sint aspernatur sed laudantium."], ["key", "tatyana_mclaughlin"], ["created_at", "2016-01-27 18:00:42.598069"], ["updated_at", "2016-01-27 18:00:42.598069"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "architecto"], ["key", "architecto"], ["created_at", "2016-01-27 18:00:42.600319"], ["updated_at", "2016-01-27 18:00:42.600319"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "soluta"], ["key", "soluta"], ["created_at", "2016-01-27 18:00:42.602321"], ["updated_at", "2016-01-27 18:00:42.602321"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Rubber Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:00:42.605573"], ["updated_at", "2016-01-27 18:00:42.605573"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (7.9ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Granite Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:00:42.616966"], ["updated_at", "2016-01-27 18:00:42.616966"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Marble Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:00:42.618685"], ["updated_at", "2016-01-27 18:00:42.618685"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Cotton Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:00:42.620315"], ["updated_at", "2016-01-27 18:00:42.620315"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (3.2ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Renee Simonis"], ["job_title", "Principal Research Associate"], ["greetings", "Dolor maxime doloribus magni repellendus."], ["summary", "Odit repellendus omnis possimus dolorem veniam deleniti cumque. Ut placeat velit deserunt ut eos in itaque. Voluptatem facilis autem ut et dolores pariatur et. Quod dolore amet."], ["key", "renee_simonis"], ["created_at", "2016-01-27 18:01:14.819568"], ["updated_at", "2016-01-27 18:01:14.819568"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:01:14.835882"], ["updated_at", "2016-01-27 18:01:14.835882"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Theresia Schneider"], ["job_title", "Direct Solutions Facilitator"], ["greetings", "Deleniti eos sunt est cupiditate aut."], ["summary", "Distinctio neque velit nesciunt. Dignissimos sit in quia saepe est vero aut. Quisquam optio id."], ["key", "dr_theresia_schneider"], ["created_at", "2016-01-27 18:01:14.842049"], ["updated_at", "2016-01-27 18:01:14.842049"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:01:14.843864"], ["updated_at", "2016-01-27 18:01:14.843864"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Axel Hegmann"], ["job_title", "Regional Marketing Facilitator"], ["greetings", "Et quae voluptatem tempora atque qui rerum velit."], ["summary", "Inventore hic autem voluptatem dolores esse sequi fugiat. Omnis et quidem nemo molestiae. Aperiam esse ratione soluta. Quis ut ut laborum."], ["key", "miss_axel_hegmann"], ["created_at", "2016-01-27 18:01:14.846442"], ["updated_at", "2016-01-27 18:01:14.846442"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 18:01:14.847753"], ["updated_at", "2016-01-27 18:01:14.847753"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Brett Bogan III"], ["job_title", "National Assurance Representative"], ["greetings", "Rem ea quidem qui ea sed."], ["summary", "Consequatur laborum a aliquam quo voluptatem similique. Ratione nam maxime deleniti neque debitis quaerat inventore. Quisquam maxime cumque."], ["key", "brett_bogan_iii"], ["created_at", "2016-01-27 18:01:14.854798"], ["updated_at", "2016-01-27 18:01:14.854798"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:01:14.856761"], ["updated_at", "2016-01-27 18:01:14.856761"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jermey Denesik"], ["job_title", "Corporate Mobility Strategist"], ["greetings", "Et occaecati ad possimus et delectus minus quidem."], ["summary", "Eius dolore voluptatem. Recusandae velit dolorum fugiat quis et ut quo. Repudiandae nobis placeat est maiores. Ex excepturi corporis omnis voluptate exercitationem sed. Harum aut molestiae voluptas."], ["key", "jermey_denesik"], ["created_at", "2016-01-27 18:01:14.860275"], ["updated_at", "2016-01-27 18:01:14.860275"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:01:14.862148"], ["updated_at", "2016-01-27 18:01:14.862148"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gage Kerluke"], ["job_title", "Principal Research Executive"], ["greetings", "Commodi ut eos maiores a."], ["summary", "Vero accusamus voluptas voluptatum. Modi eos vitae. Natus sapiente itaque et voluptates quia ullam iste."], ["key", "gage_kerluke"], ["created_at", "2016-01-27 18:01:14.865892"], ["updated_at", "2016-01-27 18:01:14.865892"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:01:14.867678"], ["updated_at", "2016-01-27 18:01:14.867678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nathaniel Wintheiser"], ["job_title", "District Brand Planner"], ["greetings", "Natus est libero est quis numquam."], ["summary", "Reprehenderit consequatur natus quaerat. Omnis quo vero quae qui et laboriosam. Voluptatum suscipit perferendis nobis quibusdam et quidem."], ["key", "nathaniel_wintheiser"], ["created_at", "2016-01-27 18:01:14.872286"], ["updated_at", "2016-01-27 18:01:14.872286"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "laborum"], ["key", "laborum"], ["created_at", "2016-01-27 18:01:14.877634"], ["updated_at", "2016-01-27 18:01:14.877634"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sunt"], ["key", "sunt"], ["created_at", "2016-01-27 18:01:14.879308"], ["updated_at", "2016-01-27 18:01:14.879308"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Granite Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:01:14.885902"], ["updated_at", "2016-01-27 18:01:14.885902"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Steel Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:01:14.890052"], ["updated_at", "2016-01-27 18:01:14.890052"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Copper Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:01:14.891967"], ["updated_at", "2016-01-27 18:01:14.891967"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Granite Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:01:14.893623"], ["updated_at", "2016-01-27 18:01:14.893623"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Brendon Hyatt"], ["job_title", "Senior Accounts Assistant"], ["greetings", "Voluptates aut magni rem vel explicabo."], ["summary", "Dolores autem nulla et ut voluptatum et expedita. Repellat quos optio. Eos nostrum ut voluptatem dolore."], ["key", "ms_brendon_hyatt"], ["created_at", "2016-01-27 18:01:14.914687"], ["updated_at", "2016-01-27 18:01:14.914687"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "repellat"], ["key", "repellat"], ["created_at", "2016-01-27 18:01:14.916728"], ["updated_at", "2016-01-27 18:01:14.916728"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "exercitationem"], ["key", "exercitationem"], ["created_at", "2016-01-27 18:01:14.918503"], ["updated_at", "2016-01-27 18:01:14.918503"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Granite Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:01:14.920796"], ["updated_at", "2016-01-27 18:01:14.920796"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Silk Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:01:14.923046"], ["updated_at", "2016-01-27 18:01:14.923046"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:01:14.924734"], ["updated_at", "2016-01-27 18:01:14.924734"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Paper Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:01:14.926272"], ["updated_at", "2016-01-27 18:01:14.926272"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kane Hammes"], ["job_title", "Direct Infrastructure Orchestrator"], ["greetings", "Est est excepturi sit voluptates quo."], ["summary", "Quia molestiae praesentium quis. Asperiores minus ratione explicabo voluptatem quia vel. Aut qui doloremque quas eos voluptas itaque ut. Vero odio eum."], ["key", "kane_hammes"], ["created_at", "2016-01-27 18:01:14.945125"], ["updated_at", "2016-01-27 18:01:14.945125"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Linen Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:01:14.947372"], ["updated_at", "2016-01-27 18:01:14.947372"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Steel Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:01:14.949926"], ["updated_at", "2016-01-27 18:01:14.949926"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Copper Lamp"], ["site_id", 1], ["created_at", "2016-01-27 18:01:14.951791"], ["updated_at", "2016-01-27 18:01:14.951791"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Concrete Pants"], ["site_id", 1], ["created_at", "2016-01-27 18:01:14.953651"], ["updated_at", "2016-01-27 18:01:14.953651"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (16.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (226.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (294.9ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Aliya Will"], ["job_title", "International Data Manager"], ["greetings", "Officia molestiae facere eveniet amet."], ["summary", "Asperiores repellendus velit. Fugiat explicabo earum sed. Impedit rerum placeat tempora qui aliquid."], ["key", "mr_aliya_will"], ["created_at", "2016-01-27 18:01:15.274932"], ["updated_at", "2016-01-27 18:01:15.274932"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Paper Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:01:15.277955"], ["updated_at", "2016-01-27 18:01:15.277955"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Copper Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:01:15.280367"], ["updated_at", "2016-01-27 18:01:15.280367"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Copper Plate"], ["site_id", 1], ["created_at", "2016-01-27 18:01:15.282063"], ["updated_at", "2016-01-27 18:01:15.282063"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Bronze Watch"], ["site_id", 1], ["created_at", "2016-01-27 18:01:15.283719"], ["updated_at", "2016-01-27 18:01:15.283719"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (10.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (16.5ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Hollis Altenwerth"], ["job_title", "Corporate Optimization Producer"], ["greetings", "Odio tempora rerum accusantium fuga."], ["summary", "Dolores aut rerum distinctio autem eius rerum. Ad ut est deserunt. Hic sequi et id ut. Velit doloribus harum."], ["key", "ms_hollis_altenwerth"], ["created_at", "2016-01-27 18:01:15.310715"], ["updated_at", "2016-01-27 18:01:15.310715"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "delectus"], ["key", "delectus"], ["created_at", "2016-01-27 18:01:15.314803"], ["updated_at", "2016-01-27 18:01:15.314803"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "optio"], ["key", "optio"], ["created_at", "2016-01-27 18:01:15.318217"], ["updated_at", "2016-01-27 18:01:15.318217"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Cotton Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:01:15.323933"], ["updated_at", "2016-01-27 18:01:15.323933"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Paper Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:01:15.328611"], ["updated_at", "2016-01-27 18:01:15.328611"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Linen Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:01:15.333925"], ["updated_at", "2016-01-27 18:01:15.333925"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Bronze Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:01:15.337570"], ["updated_at", "2016-01-27 18:01:15.337570"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (10.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (43.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Athena Senger"], ["job_title", "Investor Implementation Supervisor"], ["greetings", "Esse qui voluptas molestiae nemo provident labore placeat voluptate."], ["summary", "Error enim asperiores cupiditate. Est commodi maiores et quod. Nobis quia dolore. Officiis accusamus ducimus maiores ea porro vel. Perferendis aut fugiat hic distinctio est deserunt facilis."], ["key", "athena_senger"], ["created_at", "2016-01-27 18:01:15.394531"], ["updated_at", "2016-01-27 18:01:15.394531"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eos"], ["key", "eos"], ["created_at", "2016-01-27 18:01:15.397363"], ["updated_at", "2016-01-27 18:01:15.397363"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "esse"], ["key", "esse"], ["created_at", "2016-01-27 18:01:15.399467"], ["updated_at", "2016-01-27 18:01:15.399467"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Wooden Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:01:15.402578"], ["updated_at", "2016-01-27 18:01:15.402578"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Cotton Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:01:15.405703"], ["updated_at", "2016-01-27 18:01:15.405703"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Cotton Clock"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:01:15.408610"], ["updated_at", "2016-01-27 18:01:15.408610"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Granite Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:01:15.411686"], ["updated_at", "2016-01-27 18:01:15.411686"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.5ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Berry Lind"], ["job_title", "Lead Division Officer"], ["greetings", "Et corrupti nulla distinctio."], ["summary", "Velit et ea ut temporibus sed error esse. Necessitatibus atque voluptatem voluptas sunt laborum. Ad sint ut laboriosam. A ut placeat tempore nobis qui magni est."], ["key", "berry_lind"], ["created_at", "2016-01-27 18:01:15.441021"], ["updated_at", "2016-01-27 18:01:15.441021"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (16.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Corine Fritsch II"], ["job_title", "Corporate Tactics Officer"], ["greetings", "Animi voluptatem rerum unde cupiditate eveniet necessitatibus perferendis voluptatem."], ["summary", "Est accusamus distinctio ipsum alias. Eos in omnis eligendi maiores aut animi voluptates. Aperiam nostrum laborum omnis modi."], ["key", "corine_fritsch_ii"], ["created_at", "2016-01-27 18:01:15.478345"], ["updated_at", "2016-01-27 18:01:15.478345"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.2ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kennith Lind"], ["job_title", "Senior Implementation Technician"], ["greetings", "Aut dignissimos velit quia eaque ratione."], ["summary", "Molestiae corrupti et necessitatibus saepe voluptatibus. Libero dolorem non necessitatibus et mollitia. Voluptatum quis laudantium. Hic quos repellendus."], ["key", "kennith_lind"], ["created_at", "2016-01-27 18:01:15.490185"], ["updated_at", "2016-01-27 18:01:15.490185"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 18:01:15.493714"], ["updated_at", "2016-01-27 18:01:15.493714"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "neque"], ["key", "neque"], ["created_at", "2016-01-27 18:01:15.497020"], ["updated_at", "2016-01-27 18:01:15.497020"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Rubber Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:01:15.499007"], ["updated_at", "2016-01-27 18:01:15.499007"]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Cotton Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:01:15.501828"], ["updated_at", "2016-01-27 18:01:15.501828"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wooden Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:01:15.504468"], ["updated_at", "2016-01-27 18:01:15.504468"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Aluminum Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:01:15.507569"], ["updated_at", "2016-01-27 18:01:15.507569"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (10.3ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (26.0ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "London Emard"], ["job_title", "Corporate Implementation Planner"], ["greetings", "Ut esse optio eveniet suscipit veniam voluptas error sed."], ["summary", "Laborum omnis ullam quia aliquam illum sapiente. Facere ut impedit voluptatibus quia. Quia dicta aspernatur reprehenderit ut aperiam hic. Dicta sunt qui. Consectetur earum alias inventore quis odit."], ["key", "london_emard"], ["created_at", "2016-01-27 18:03:11.664615"], ["updated_at", "2016-01-27 18:03:11.664615"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:03:11.681152"], ["updated_at", "2016-01-27 18:03:11.681152"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Johan Rippin"], ["job_title", "Direct Implementation Designer"], ["greetings", "Voluptatem ex enim itaque unde et repellendus fugit id."], ["summary", "Architecto adipisci expedita alias. Velit dolores doloribus omnis. Aperiam consectetur ipsam est ut odit. Nam placeat eius. Ea doloremque consequatur ipsam minima."], ["key", "johan_rippin"], ["created_at", "2016-01-27 18:03:11.686822"], ["updated_at", "2016-01-27 18:03:11.686822"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:03:11.688884"], ["updated_at", "2016-01-27 18:03:11.688884"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Lauriane Baumbach"], ["job_title", "Global Branding Consultant"], ["greetings", "Possimus et et atque commodi qui sit eum."], ["summary", "Dolor ullam molestias magnam reiciendis aspernatur minima et. Omnis id dolore et pariatur doloribus. Voluptatem eveniet ullam quia molestiae et vero deserunt. Sit nostrum nam ad non saepe reiciendis perspiciatis."], ["key", "miss_lauriane_baumbach"], ["created_at", "2016-01-27 18:03:11.691660"], ["updated_at", "2016-01-27 18:03:11.691660"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 18:03:11.693091"], ["updated_at", "2016-01-27 18:03:11.693091"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Clarabelle Reilly"], ["job_title", "Customer Metrics Officer"], ["greetings", "Non enim accusantium totam fugiat."], ["summary", "Officia consequuntur in quis libero. Sunt voluptate nihil dolorum. Nobis aperiam molestiae officiis. At reiciendis ducimus placeat aliquam praesentium."], ["key", "clarabelle_reilly"], ["created_at", "2016-01-27 18:03:11.699488"], ["updated_at", "2016-01-27 18:03:11.699488"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:03:11.701279"], ["updated_at", "2016-01-27 18:03:11.701279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Jerod Shanahan"], ["job_title", "Dynamic Communications Analyst"], ["greetings", "Nulla officiis deleniti sapiente sunt harum."], ["summary", "Dolorem accusantium est qui voluptatem. Similique earum fugiat nostrum explicabo. Nihil occaecati adipisci eius doloremque. Deleniti modi tenetur non unde cupiditate. Qui aut voluptatibus qui nihil repellat nulla."], ["key", "mr_jerod_shanahan"], ["created_at", "2016-01-27 18:03:11.704983"], ["updated_at", "2016-01-27 18:03:11.704983"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:03:11.706978"], ["updated_at", "2016-01-27 18:03:11.706978"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Kenton Tromp"], ["job_title", "Chief Group Liaison"], ["greetings", "Ducimus sed velit error delectus consequatur et vel."], ["summary", "Distinctio voluptates perferendis corporis ea consequuntur. Optio similique et error nihil. Voluptate autem eligendi ad officia suscipit. Id tempora sed qui."], ["key", "dr_kenton_tromp"], ["created_at", "2016-01-27 18:03:11.710765"], ["updated_at", "2016-01-27 18:03:11.710765"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:03:11.712530"], ["updated_at", "2016-01-27 18:03:11.712530"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nella Goodwin"], ["job_title", "Customer Factors Executive"], ["greetings", "Nam at quis suscipit dolorem iste quia veniam."], ["summary", "Amet facilis iusto. Consectetur et beatae cum quod dolor voluptatem. Eos laudantium dolorem qui magni id omnis. Fugiat sunt error. A qui est nisi deserunt voluptatibus quibusdam reprehenderit."], ["key", "nella_goodwin"], ["created_at", "2016-01-27 18:03:11.716538"], ["updated_at", "2016-01-27 18:03:11.716538"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 18:03:11.721888"], ["updated_at", "2016-01-27 18:03:11.721888"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 18:03:11.723669"], ["updated_at", "2016-01-27 18:03:11.723669"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:03:11.730096"], ["updated_at", "2016-01-27 18:03:11.730096"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Silk Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:03:11.732100"], ["updated_at", "2016-01-27 18:03:11.732100"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wooden Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:03:11.735049"], ["updated_at", "2016-01-27 18:03:11.735049"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Linen Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:03:11.737397"], ["updated_at", "2016-01-27 18:03:11.737397"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Darion Quitzon"], ["job_title", "Customer Communications Executive"], ["greetings", "Aliquid ab officiis cum ad."], ["summary", "Illum libero placeat perferendis. Odio quia et facilis qui ad. Quia ut cupiditate aspernatur et odio."], ["key", "miss_darion_quitzon"], ["created_at", "2016-01-27 18:03:11.759540"], ["updated_at", "2016-01-27 18:03:11.759540"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 18:03:11.761540"], ["updated_at", "2016-01-27 18:03:11.761540"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "pariatur"], ["key", "pariatur"], ["created_at", "2016-01-27 18:03:11.762979"], ["updated_at", "2016-01-27 18:03:11.762979"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Leather Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:03:11.765132"], ["updated_at", "2016-01-27 18:03:11.765132"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Bronze Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:03:11.767065"], ["updated_at", "2016-01-27 18:03:11.767065"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Linen Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:03:11.769180"], ["updated_at", "2016-01-27 18:03:11.769180"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Leather Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:03:11.770858"], ["updated_at", "2016-01-27 18:03:11.770858"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Steve Bruen II"], ["job_title", "Principal Program Producer"], ["greetings", "Quo voluptas corporis recusandae nisi alias et quibusdam."], ["summary", "Hic et qui. Quidem illum fugiat deleniti atque ducimus. Aut explicabo inventore nostrum ducimus. Itaque quisquam nihil natus."], ["key", "steve_bruen_ii"], ["created_at", "2016-01-27 18:03:11.789655"], ["updated_at", "2016-01-27 18:03:11.789655"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:03:11.791835"], ["updated_at", "2016-01-27 18:03:11.791835"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Leather Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:03:11.794310"], ["updated_at", "2016-01-27 18:03:11.794310"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Bronze Bench"], ["site_id", 1], ["created_at", "2016-01-27 18:03:11.796242"], ["updated_at", "2016-01-27 18:03:11.796242"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Keyboard"], ["site_id", 1], ["created_at", "2016-01-27 18:03:11.797696"], ["updated_at", "2016-01-27 18:03:11.797696"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.2ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (222.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (287.4ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Lonzo Bergstrom"], ["job_title", "Product Branding Producer"], ["greetings", "A non eaque et possimus beatae."], ["summary", "Velit possimus voluptas quo enim eum et. In aut delectus voluptas. Qui corporis nemo. Quia officiis nam ut."], ["key", "dr_lonzo_bergstrom"], ["created_at", "2016-01-27 18:03:12.110110"], ["updated_at", "2016-01-27 18:03:12.110110"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Steel Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:03:12.115213"], ["updated_at", "2016-01-27 18:03:12.115213"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Bronze Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:03:12.119711"], ["updated_at", "2016-01-27 18:03:12.119711"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Silk Computer"], ["site_id", 1], ["created_at", "2016-01-27 18:03:12.123481"], ["updated_at", "2016-01-27 18:03:12.123481"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Granite Plate"], ["site_id", 1], ["created_at", "2016-01-27 18:03:12.127173"], ["updated_at", "2016-01-27 18:03:12.127173"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (10.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Hildegard Gutkowski"], ["job_title", "Corporate Tactics Specialist"], ["greetings", "Earum culpa aut vitae perspiciatis natus quidem."], ["summary", "Excepturi voluptatem facilis mollitia est tenetur inventore. Adipisci eum dolorem sequi ipsam quibusdam explicabo. Impedit tempore adipisci consequatur dolore cum totam. Eos ut quia dolor excepturi voluptatibus rerum. Consequatur quod blanditiis odit error aperiam."], ["key", "hildegard_gutkowski"], ["created_at", "2016-01-27 18:03:12.147905"], ["updated_at", "2016-01-27 18:03:12.147905"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-27 18:03:12.153008"], ["updated_at", "2016-01-27 18:03:12.153008"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "esse"], ["key", "esse"], ["created_at", "2016-01-27 18:03:12.156912"], ["updated_at", "2016-01-27 18:03:12.156912"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:03:12.160989"], ["updated_at", "2016-01-27 18:03:12.160989"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Rubber Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:03:12.165185"], ["updated_at", "2016-01-27 18:03:12.165185"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Bronze Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:03:12.172273"], ["updated_at", "2016-01-27 18:03:12.172273"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Copper Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:03:12.178622"], ["updated_at", "2016-01-27 18:03:12.178622"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (9.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (36.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kailyn Donnelly"], ["job_title", "Regional Branding Engineer"], ["greetings", "Voluptatem tempora doloribus doloremque inventore."], ["summary", "Inventore excepturi vitae ut sapiente neque quo. Aspernatur non praesentium explicabo possimus. Ea aliquid veritatis enim ab corporis expedita. At natus omnis earum molestias ut. Pariatur deleniti perferendis eum a exercitationem sunt."], ["key", "kailyn_donnelly"], ["created_at", "2016-01-27 18:03:12.225750"], ["updated_at", "2016-01-27 18:03:12.225750"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quis"], ["key", "quis"], ["created_at", "2016-01-27 18:03:12.228428"], ["updated_at", "2016-01-27 18:03:12.228428"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "enim"], ["key", "enim"], ["created_at", "2016-01-27 18:03:12.231150"], ["updated_at", "2016-01-27 18:03:12.231150"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Cotton Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:03:12.236818"], ["updated_at", "2016-01-27 18:03:12.236818"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wooden Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:03:12.240154"], ["updated_at", "2016-01-27 18:03:12.240154"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:03:12.243378"], ["updated_at", "2016-01-27 18:03:12.243378"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Steel Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:03:12.246909"], ["updated_at", "2016-01-27 18:03:12.246909"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (4.7ms) Portfolio::SiteItemCategory Load (0.3ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (25.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Giovani Deckow"], ["job_title", "Legacy Tactics Consultant"], ["greetings", "Vel consequatur soluta aut."], ["summary", "Minus dolorem dicta nulla. Omnis quaerat facilis officiis et commodi ipsum. Id autem nisi qui. Ut laboriosam aut."], ["key", "miss_giovani_deckow"], ["created_at", "2016-01-27 18:03:12.281247"], ["updated_at", "2016-01-27 18:03:12.281247"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (14.8ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jannie Bartell"], ["job_title", "Direct Usability Coordinator"], ["greetings", "Quo quibusdam soluta voluptas delectus voluptas sed."], ["summary", "Sit blanditiis enim a doloribus expedita officia. Reprehenderit sed eos sint enim et. Quia dolores sint expedita est qui eaque."], ["key", "jannie_bartell"], ["created_at", "2016-01-27 18:03:12.315833"], ["updated_at", "2016-01-27 18:03:12.315833"]]  (0.7ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.0ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Tatyana Kris"], ["job_title", "District Factors Executive"], ["greetings", "Delectus a nihil similique facere ut."], ["summary", "Eos culpa fugit ducimus. Illum nulla aut. Aut provident aut inventore a sed autem."], ["key", "mrs_tatyana_kris"], ["created_at", "2016-01-27 18:03:12.327778"], ["updated_at", "2016-01-27 18:03:12.327778"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "beatae"], ["key", "beatae"], ["created_at", "2016-01-27 18:03:12.330921"], ["updated_at", "2016-01-27 18:03:12.330921"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolorem"], ["key", "dolorem"], ["created_at", "2016-01-27 18:03:12.333535"], ["updated_at", "2016-01-27 18:03:12.333535"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Bronze Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:03:12.337299"], ["updated_at", "2016-01-27 18:03:12.337299"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Cotton Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:03:12.340088"], ["updated_at", "2016-01-27 18:03:12.340088"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wooden Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:03:12.342674"], ["updated_at", "2016-01-27 18:03:12.342674"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Plastic Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:03:12.345141"], ["updated_at", "2016-01-27 18:03:12.345141"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (12.6ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (27.6ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Caleb Collins"], ["job_title", "Senior Usability Coordinator"], ["greetings", "Et sunt voluptatem sed distinctio ullam."], ["summary", "Autem consequuntur reprehenderit eveniet quis tempore voluptatem. Quaerat in possimus cumque. Doloribus voluptatem ea. Eligendi iste optio distinctio praesentium ipsum. Est est similique quam in sit sunt."], ["key", "caleb_collins"], ["created_at", "2016-01-27 18:06:02.516170"], ["updated_at", "2016-01-27 18:06:02.516170"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:06:02.534363"], ["updated_at", "2016-01-27 18:06:02.534363"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ervin Veum"], ["job_title", "Lead Interactions Liaison"], ["greetings", "Architecto aperiam dolorem iusto quibusdam ut ut labore possimus."], ["summary", "Eligendi quae exercitationem inventore quam quis. Quos magni in enim. Quia ducimus consequatur numquam. Nemo ea saepe dignissimos. Magnam sed officiis illum."], ["key", "ervin_veum"], ["created_at", "2016-01-27 18:06:02.540581"], ["updated_at", "2016-01-27 18:06:02.540581"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:06:02.542764"], ["updated_at", "2016-01-27 18:06:02.542764"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Clinton Schinner III"], ["job_title", "Global Solutions Engineer"], ["greetings", "Ea aut recusandae maxime aut expedita sit."], ["summary", "Quod unde inventore maxime. Modi mollitia recusandae aliquam et nisi iusto. Vel consectetur non corporis blanditiis. Ab nemo at eum amet."], ["key", "clinton_schinner_iii"], ["created_at", "2016-01-27 18:06:02.545743"], ["updated_at", "2016-01-27 18:06:02.545743"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 18:06:02.547844"], ["updated_at", "2016-01-27 18:06:02.547844"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Edna Spencer"], ["job_title", "International Accountability Associate"], ["greetings", "Id et incidunt architecto perferendis est iste reprehenderit eveniet."], ["summary", "Et nam temporibus. Est eum dolor optio dolorum distinctio eaque iure. Explicabo veniam accusamus fugiat fugit ea. Aliquid vel explicabo et."], ["key", "edna_spencer"], ["created_at", "2016-01-27 18:06:02.554696"], ["updated_at", "2016-01-27 18:06:02.554696"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:06:02.556687"], ["updated_at", "2016-01-27 18:06:02.556687"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tremaine Paucek"], ["job_title", "Internal Branding Architect"], ["greetings", "Molestias aliquid dicta explicabo."], ["summary", "Molestiae repudiandae ex quo. Rerum id accusantium quia omnis et ut sed. Quia asperiores aliquam quo adipisci fugiat inventore. Vel aut quibusdam mollitia."], ["key", "tremaine_paucek"], ["created_at", "2016-01-27 18:06:02.560727"], ["updated_at", "2016-01-27 18:06:02.560727"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:06:02.563316"], ["updated_at", "2016-01-27 18:06:02.563316"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Carmelo Boyer"], ["job_title", "Legacy Optimization Producer"], ["greetings", "Similique nam minus quo eum est praesentium repellendus tenetur."], ["summary", "Reprehenderit alias doloribus autem ullam minus corporis. Sunt voluptatem modi. Impedit eos dolores dolorum non rerum qui neque. Ullam praesentium culpa qui omnis earum."], ["key", "carmelo_boyer"], ["created_at", "2016-01-27 18:06:02.567657"], ["updated_at", "2016-01-27 18:06:02.567657"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:06:02.569759"], ["updated_at", "2016-01-27 18:06:02.569759"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alexanne Ankunding V"], ["job_title", "Principal Assurance Officer"], ["greetings", "Eius nisi et quae ullam odio possimus."], ["summary", "Accusamus et similique voluptas non amet. Nulla eius dolorem ex. Cum distinctio adipisci aliquam quia corrupti. Et sunt necessitatibus voluptatem aut officiis. Atque ipsa qui sed ab."], ["key", "alexanne_ankunding_v"], ["created_at", "2016-01-27 18:06:02.575655"], ["updated_at", "2016-01-27 18:06:02.575655"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "numquam"], ["key", "numquam"], ["created_at", "2016-01-27 18:06:02.582580"], ["updated_at", "2016-01-27 18:06:02.582580"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ea"], ["key", "ea"], ["created_at", "2016-01-27 18:06:02.584750"], ["updated_at", "2016-01-27 18:06:02.584750"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Aluminum Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:06:02.592474"], ["updated_at", "2016-01-27 18:06:02.592474"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:06:02.596098"], ["updated_at", "2016-01-27 18:06:02.596098"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:06:02.599316"], ["updated_at", "2016-01-27 18:06:02.599316"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Linen Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:06:02.601424"], ["updated_at", "2016-01-27 18:06:02.601424"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Maymie Yundt"], ["job_title", "Future Data Coordinator"], ["greetings", "Assumenda similique qui quas et ipsum."], ["summary", "Quam magnam temporibus. Et dolor ea ipsam. Nam vitae iusto provident expedita dolorem sed rem. Quos eveniet rerum sequi sit qui aliquid omnis."], ["key", "maymie_yundt"], ["created_at", "2016-01-27 18:06:02.632446"], ["updated_at", "2016-01-27 18:06:02.632446"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "totam"], ["key", "totam"], ["created_at", "2016-01-27 18:06:02.634620"], ["updated_at", "2016-01-27 18:06:02.634620"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "in"], ["key", "in"], ["created_at", "2016-01-27 18:06:02.636513"], ["updated_at", "2016-01-27 18:06:02.636513"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Steel Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:06:02.638654"], ["updated_at", "2016-01-27 18:06:02.638654"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Linen Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:06:02.640934"], ["updated_at", "2016-01-27 18:06:02.640934"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Paper Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:06:02.643638"], ["updated_at", "2016-01-27 18:06:02.643638"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Rubber Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:06:02.645869"], ["updated_at", "2016-01-27 18:06:02.645869"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.4ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Paige Hammes DVM"], ["job_title", "Customer Web Supervisor"], ["greetings", "Unde necessitatibus sunt ut vel ex."], ["summary", "Ea unde autem similique assumenda. Et sapiente unde molestiae. Facere asperiores cum repudiandae aut quis sed at."], ["key", "paige_hammes_dvm"], ["created_at", "2016-01-27 18:06:02.668437"], ["updated_at", "2016-01-27 18:06:02.668437"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Bronze Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:06:02.670825"], ["updated_at", "2016-01-27 18:06:02.670825"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Concrete Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:06:02.673019"], ["updated_at", "2016-01-27 18:06:02.673019"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wooden Watch"], ["site_id", 1], ["created_at", "2016-01-27 18:06:02.675093"], ["updated_at", "2016-01-27 18:06:02.675093"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Leather Bottle"], ["site_id", 1], ["created_at", "2016-01-27 18:06:02.677215"], ["updated_at", "2016-01-27 18:06:02.677215"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (4.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (17.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (230.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (299.8ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Garrett Padberg"], ["job_title", "Regional Web Specialist"], ["greetings", "Possimus qui magnam quia quos assumenda."], ["summary", "Iure veniam et dignissimos quibusdam debitis. Laudantium sint et numquam temporibus odio eos. Consequatur minima accusamus et laudantium. Sapiente consectetur aut. Dolorem aperiam nesciunt non consectetur eligendi dolorem non."], ["key", "garrett_padberg"], ["created_at", "2016-01-27 18:06:03.006468"], ["updated_at", "2016-01-27 18:06:03.006468"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Copper Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:06:03.012764"], ["updated_at", "2016-01-27 18:06:03.012764"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Iron Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:06:03.018702"], ["updated_at", "2016-01-27 18:06:03.018702"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Leather Keyboard"], ["site_id", 1], ["created_at", "2016-01-27 18:06:03.023136"], ["updated_at", "2016-01-27 18:06:03.023136"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Silk Wallet"], ["site_id", 1], ["created_at", "2016-01-27 18:06:03.027325"], ["updated_at", "2016-01-27 18:06:03.027325"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (12.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Keaton Emmerich"], ["job_title", "Lead Intranet Associate"], ["greetings", "Harum impedit nobis est porro officiis necessitatibus."], ["summary", "Cupiditate vel optio. Est ut magni commodi soluta laborum eaque tempora. Est id possimus sunt necessitatibus ullam doloribus. Sequi est alias aspernatur nulla ipsum."], ["key", "keaton_emmerich"], ["created_at", "2016-01-27 18:06:03.051963"], ["updated_at", "2016-01-27 18:06:03.051963"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "doloremque"], ["key", "doloremque"], ["created_at", "2016-01-27 18:06:03.056512"], ["updated_at", "2016-01-27 18:06:03.056512"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "provident"], ["key", "provident"], ["created_at", "2016-01-27 18:06:03.060302"], ["updated_at", "2016-01-27 18:06:03.060302"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Cotton Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:06:03.065475"], ["updated_at", "2016-01-27 18:06:03.065475"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Copper Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:06:03.073830"], ["updated_at", "2016-01-27 18:06:03.073830"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Bronze Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:06:03.081773"], ["updated_at", "2016-01-27 18:06:03.081773"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Silk Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:06:03.085520"], ["updated_at", "2016-01-27 18:06:03.085520"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (9.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (37.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Leann Cummings"], ["job_title", "Customer Interactions Planner"], ["greetings", "Est praesentium blanditiis earum possimus quia."], ["summary", "Eum dolorem rerum dolor tempore. Hic velit iusto cupiditate nisi. Minus totam quis et. Eum et facilis."], ["key", "leann_cummings"], ["created_at", "2016-01-27 18:06:03.132725"], ["updated_at", "2016-01-27 18:06:03.132725"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ullam"], ["key", "ullam"], ["created_at", "2016-01-27 18:06:03.135635"], ["updated_at", "2016-01-27 18:06:03.135635"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-27 18:06:03.138371"], ["updated_at", "2016-01-27 18:06:03.138371"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Plastic Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:06:03.141147"], ["updated_at", "2016-01-27 18:06:03.141147"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Linen Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:06:03.144548"], ["updated_at", "2016-01-27 18:06:03.144548"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Cotton Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:06:03.147849"], ["updated_at", "2016-01-27 18:06:03.147849"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Linen Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:06:03.152212"], ["updated_at", "2016-01-27 18:06:03.152212"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (22.2ms) Portfolio::SiteItemCategory Load (0.3ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Caesar Hane"], ["job_title", "Product Implementation Consultant"], ["greetings", "Quaerat fugit nam et voluptas saepe dignissimos assumenda earum."], ["summary", "Deleniti dicta tenetur possimus maxime ut. Praesentium aut qui dicta. Delectus consequatur quam voluptas deserunt sapiente modi aut."], ["key", "caesar_hane"], ["created_at", "2016-01-27 18:06:03.189301"], ["updated_at", "2016-01-27 18:06:03.189301"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (16.0ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Geoffrey Rutherford"], ["job_title", "Customer Branding Engineer"], ["greetings", "Neque aliquid sunt autem quia pariatur."], ["summary", "Vitae ad aut rerum numquam. Debitis ut est. Eius sapiente error ad."], ["key", "geoffrey_rutherford"], ["created_at", "2016-01-27 18:06:03.230375"], ["updated_at", "2016-01-27 18:06:03.230375"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (4.1ms)  (0.4ms) rollback transaction  (0.3ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nya Carter"], ["job_title", "Investor Configuration Producer"], ["greetings", "Ullam aut rem nihil at omnis expedita omnis."], ["summary", "Alias animi amet sint aut. Beatae aut unde laborum est non. Ipsum qui autem."], ["key", "nya_carter"], ["created_at", "2016-01-27 18:06:03.243329"], ["updated_at", "2016-01-27 18:06:03.243329"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 18:06:03.246219"], ["updated_at", "2016-01-27 18:06:03.246219"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "deleniti"], ["key", "deleniti"], ["created_at", "2016-01-27 18:06:03.248978"], ["updated_at", "2016-01-27 18:06:03.248978"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Steel Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:06:03.251958"], ["updated_at", "2016-01-27 18:06:03.251958"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Silk Plate"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:06:03.255987"], ["updated_at", "2016-01-27 18:06:03.255987"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Copper Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:06:03.259750"], ["updated_at", "2016-01-27 18:06:03.259750"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Concrete Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:06:03.263671"], ["updated_at", "2016-01-27 18:06:03.263671"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.4ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (18.5ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lupe Lebsack"], ["job_title", "Central Brand Supervisor"], ["greetings", "Esse fugit aut eum deleniti ullam illo."], ["summary", "Laudantium quia porro minus dolor laborum odio veniam. Repellat molestias temporibus velit. Ea possimus perspiciatis voluptas ipsam ut suscipit id. Illum repudiandae aut."], ["key", "lupe_lebsack"], ["created_at", "2016-01-27 18:10:30.977559"], ["updated_at", "2016-01-27 18:10:30.977559"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:10:30.998835"], ["updated_at", "2016-01-27 18:10:30.998835"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Eldora Daugherty"], ["job_title", "Forward Usability Agent"], ["greetings", "Et modi nesciunt consequatur iusto minus."], ["summary", "Deserunt autem voluptate porro illum. Voluptas culpa assumenda autem sit quaerat neque. Cumque velit voluptatibus tempore incidunt. Voluptas amet qui. Id neque sunt voluptas."], ["key", "eldora_daugherty"], ["created_at", "2016-01-27 18:10:31.008030"], ["updated_at", "2016-01-27 18:10:31.008030"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:10:31.010624"], ["updated_at", "2016-01-27 18:10:31.010624"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kellie Heller"], ["job_title", "District Applications Officer"], ["greetings", "Aut dignissimos ullam omnis quaerat vel in iure eos."], ["summary", "Repellendus voluptate odio. Ipsa illum ea molestiae eveniet voluptate esse. Nobis qui et a. Aliquam ipsum accusantium placeat laborum. Ea aliquam libero."], ["key", "kellie_heller"], ["created_at", "2016-01-27 18:10:31.014497"], ["updated_at", "2016-01-27 18:10:31.014497"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 18:10:31.016749"], ["updated_at", "2016-01-27 18:10:31.016749"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Otilia Zieme"], ["job_title", "Lead Infrastructure Designer"], ["greetings", "Temporibus sed rerum consequatur natus consectetur beatae."], ["summary", "Quis amet iure eligendi. Fugit officiis laudantium ullam ipsam quam provident repudiandae. Modi aut dolorem voluptates mollitia sed possimus. A ut et tenetur maxime aut est."], ["key", "otilia_zieme"], ["created_at", "2016-01-27 18:10:31.024452"], ["updated_at", "2016-01-27 18:10:31.024452"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:10:31.026537"], ["updated_at", "2016-01-27 18:10:31.026537"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jerad Gutmann"], ["job_title", "Human Response Assistant"], ["greetings", "Nobis cumque doloremque possimus sint ut voluptas tenetur minus."], ["summary", "Dolorum ex totam quos necessitatibus voluptate aliquid sit. Sunt inventore at qui. Quas nihil porro aliquam et inventore. Architecto laudantium voluptate error exercitationem minus dolores voluptatem. Dolores ea sint quibusdam asperiores."], ["key", "jerad_gutmann"], ["created_at", "2016-01-27 18:10:31.030298"], ["updated_at", "2016-01-27 18:10:31.030298"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:10:31.032600"], ["updated_at", "2016-01-27 18:10:31.032600"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Oleta Bartell"], ["job_title", "Internal Metrics Liaison"], ["greetings", "Quis ut sed dolor et."], ["summary", "Laborum pariatur ex labore et. Quis cumque at est tempore. Blanditiis veritatis sit autem ut. Quas expedita et in est."], ["key", "mrs_oleta_bartell"], ["created_at", "2016-01-27 18:10:31.036999"], ["updated_at", "2016-01-27 18:10:31.036999"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 18:10:31.039187"], ["updated_at", "2016-01-27 18:10:31.039187"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Tamia Hilll"], ["job_title", "Forward Mobility Manager"], ["greetings", "Eum ipsum aliquid voluptatibus tenetur voluptas modi fugiat."], ["summary", "Ipsam at laudantium. Adipisci id ad ut et reiciendis magni dolorum. Repellat impedit adipisci qui id tempora. Ut dolore commodi culpa reiciendis. Dicta magni eius unde id."], ["key", "ms_tamia_hilll"], ["created_at", "2016-01-27 18:10:31.044150"], ["updated_at", "2016-01-27 18:10:31.044150"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-27 18:10:31.048834"], ["updated_at", "2016-01-27 18:10:31.048834"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "modi"], ["key", "modi"], ["created_at", "2016-01-27 18:10:31.053060"], ["updated_at", "2016-01-27 18:10:31.053060"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Copper Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:10:31.060645"], ["updated_at", "2016-01-27 18:10:31.060645"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Iron Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:10:31.062998"], ["updated_at", "2016-01-27 18:10:31.062998"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Paper Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:10:31.065185"], ["updated_at", "2016-01-27 18:10:31.065185"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Iron Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:10:31.067429"], ["updated_at", "2016-01-27 18:10:31.067429"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tatyana Okuneva Jr."], ["job_title", "Corporate Directives Engineer"], ["greetings", "Officia commodi aut hic eos earum eos."], ["summary", "Quis dignissimos ratione incidunt ducimus et et est. Quia non odit rerum. Mollitia quidem deleniti."], ["key", "tatyana_okuneva_jr"], ["created_at", "2016-01-27 18:10:31.095412"], ["updated_at", "2016-01-27 18:10:31.095412"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fugit"], ["key", "fugit"], ["created_at", "2016-01-27 18:10:31.097904"], ["updated_at", "2016-01-27 18:10:31.097904"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "at"], ["key", "at"], ["created_at", "2016-01-27 18:10:31.100027"], ["updated_at", "2016-01-27 18:10:31.100027"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Cotton Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:10:31.102381"], ["updated_at", "2016-01-27 18:10:31.102381"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Granite Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:10:31.105055"], ["updated_at", "2016-01-27 18:10:31.105055"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Copper Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:10:31.107446"], ["updated_at", "2016-01-27 18:10:31.107446"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wool Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:10:31.109450"], ["updated_at", "2016-01-27 18:10:31.109450"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mattie Okuneva"], ["job_title", "Legacy Infrastructure Facilitator"], ["greetings", "Non assumenda iste quas voluptas aut a."], ["summary", "Incidunt nemo sit et sint. Repellendus exercitationem quam aliquam neque. Ratione ut ad quis quia molestiae."], ["key", "mattie_okuneva"], ["created_at", "2016-01-27 18:10:31.132982"], ["updated_at", "2016-01-27 18:10:31.132982"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Wooden Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:10:31.137414"], ["updated_at", "2016-01-27 18:10:31.137414"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Steel Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:10:31.140283"], ["updated_at", "2016-01-27 18:10:31.140283"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Rubber Bottle"], ["site_id", 1], ["created_at", "2016-01-27 18:10:31.142208"], ["updated_at", "2016-01-27 18:10:31.142208"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Steel Gloves"], ["site_id", 1], ["created_at", "2016-01-27 18:10:31.143985"], ["updated_at", "2016-01-27 18:10:31.143985"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (4.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (17.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (236.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (310.4ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Keeley Hickle"], ["job_title", "National Operations Consultant"], ["greetings", "Iusto neque quia incidunt et soluta ut."], ["summary", "Voluptate omnis quis harum sint quia unde. Vero ad optio ex sunt quasi. Error consequuntur veritatis eos. Cumque laboriosam ut minima quibusdam veniam."], ["key", "keeley_hickle"], ["created_at", "2016-01-27 18:10:31.480534"], ["updated_at", "2016-01-27 18:10:31.480534"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Wool Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:10:31.485551"], ["updated_at", "2016-01-27 18:10:31.485551"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Granite Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 18:10:31.489353"], ["updated_at", "2016-01-27 18:10:31.489353"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Rubber Lamp"], ["site_id", 1], ["created_at", "2016-01-27 18:10:31.491487"], ["updated_at", "2016-01-27 18:10:31.491487"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wooden Car"], ["site_id", 1], ["created_at", "2016-01-27 18:10:31.493375"], ["updated_at", "2016-01-27 18:10:31.493375"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (16.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Benny Sawayn"], ["job_title", "Principal Web Agent"], ["greetings", "Inventore dicta ullam quisquam quo repudiandae ut."], ["summary", "Suscipit vel aut rerum ut odio. Quis consequatur est aperiam illo deleniti ut. Et tenetur sint. Id corporis est nulla necessitatibus."], ["key", "benny_sawayn"], ["created_at", "2016-01-27 18:10:31.522640"], ["updated_at", "2016-01-27 18:10:31.522640"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 18:10:31.527811"], ["updated_at", "2016-01-27 18:10:31.527811"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-27 18:10:31.531724"], ["updated_at", "2016-01-27 18:10:31.531724"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Linen Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:10:31.536796"], ["updated_at", "2016-01-27 18:10:31.536796"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Bronze Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:10:31.542683"], ["updated_at", "2016-01-27 18:10:31.542683"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Paper Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:10:31.546669"], ["updated_at", "2016-01-27 18:10:31.546669"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Plastic Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:10:31.550080"], ["updated_at", "2016-01-27 18:10:31.550080"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (4.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (9.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (10.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (43.7ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Yasmine Smith"], ["job_title", "Dynamic Metrics Executive"], ["greetings", "Aut quas id voluptatem molestiae omnis vel expedita."], ["summary", "Excepturi et qui. Sed quia placeat. Totam perferendis at id dicta molestias voluptatum. Perferendis explicabo et unde qui deleniti amet. Sint mollitia quaerat fugit rerum fugiat ipsam ipsum."], ["key", "yasmine_smith"], ["created_at", "2016-01-27 18:10:31.606040"], ["updated_at", "2016-01-27 18:10:31.606040"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 18:10:31.609851"], ["updated_at", "2016-01-27 18:10:31.609851"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-27 18:10:31.612334"], ["updated_at", "2016-01-27 18:10:31.612334"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Aluminum Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:10:31.615454"], ["updated_at", "2016-01-27 18:10:31.615454"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Marble Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:10:31.618926"], ["updated_at", "2016-01-27 18:10:31.618926"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Rubber Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:10:31.622898"], ["updated_at", "2016-01-27 18:10:31.622898"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Marble Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:10:31.625928"], ["updated_at", "2016-01-27 18:10:31.625928"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.8ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (18.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (1.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Dan Watsica"], ["job_title", "Internal Functionality Director"], ["greetings", "Inventore id rerum et iure consequatur omnis."], ["summary", "Eius qui iure hic molestiae quae. Fuga similique et illo at. Nisi exercitationem odio qui. Iste maiores et eveniet. Commodi et quod voluptatem debitis placeat."], ["key", "ms_dan_watsica"], ["created_at", "2016-01-27 18:10:31.657292"], ["updated_at", "2016-01-27 18:10:31.657292"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)  (1.3ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (15.4ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Judy Wisozk"], ["job_title", "Legacy Assurance Administrator"], ["greetings", "Nisi minus ab sunt."], ["summary", "Aliquam asperiores nihil nobis quia. Quia ut modi qui explicabo cumque earum dolor. Quis temporibus quisquam nesciunt nobis culpa voluptas. Quae provident qui cumque enim et facilis. Veritatis est dolores inventore deserunt ipsam dolor."], ["key", "judy_wisozk"], ["created_at", "2016-01-27 18:10:31.696983"], ["updated_at", "2016-01-27 18:10:31.696983"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (4.8ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jermey Emard"], ["job_title", "International Implementation Orchestrator"], ["greetings", "Dolor iusto saepe debitis dignissimos voluptatem."], ["summary", "Non qui asperiores. Non quia maxime ut. Fuga eos similique voluptatum culpa."], ["key", "jermey_emard"], ["created_at", "2016-01-27 18:10:31.712485"], ["updated_at", "2016-01-27 18:10:31.712485"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ratione"], ["key", "ratione"], ["created_at", "2016-01-27 18:10:31.715156"], ["updated_at", "2016-01-27 18:10:31.715156"]]  (0.5ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 18:10:31.717797"], ["updated_at", "2016-01-27 18:10:31.717797"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Leather Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 18:10:31.721005"], ["updated_at", "2016-01-27 18:10:31.721005"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Cotton Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 18:10:31.725284"], ["updated_at", "2016-01-27 18:10:31.725284"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Concrete Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 18:10:31.729355"], ["updated_at", "2016-01-27 18:10:31.729355"]]  (0.4ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Aluminum Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 18:10:31.732378"], ["updated_at", "2016-01-27 18:10:31.732378"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.9ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (19.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Lucas Boyer"], ["job_title", "Human Quality Developer"], ["greetings", "Consequatur architecto id eos natus eos nihil ad est."], ["summary", "Eveniet sequi incidunt provident pariatur suscipit doloremque perspiciatis. Aut porro aspernatur. Ex nihil et eveniet non animi."], ["key", "dr_lucas_boyer"], ["created_at", "2016-01-27 20:52:45.754491"], ["updated_at", "2016-01-27 20:52:45.754491"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:52:45.772211"], ["updated_at", "2016-01-27 20:52:45.772211"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Alfonzo Kohler"], ["job_title", "National Markets Liaison"], ["greetings", "Ea est temporibus distinctio sequi vel et."], ["summary", "Sit autem omnis quo ad. In corporis et ipsa sit. Voluptas voluptatem et libero et sed illo dolor. Architecto beatae et suscipit eaque reiciendis id."], ["key", "mr_alfonzo_kohler"], ["created_at", "2016-01-27 20:52:45.776790"], ["updated_at", "2016-01-27 20:52:45.776790"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:52:45.778787"], ["updated_at", "2016-01-27 20:52:45.778787"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Domenick Keeling"], ["job_title", "National Markets Representative"], ["greetings", "Voluptatem et ad excepturi sed."], ["summary", "Itaque aut maiores inventore quis earum saepe animi. At accusantium sed voluptatem accusamus. Dolorem eum voluptatem eligendi."], ["key", "domenick_keeling"], ["created_at", "2016-01-27 20:52:45.781584"], ["updated_at", "2016-01-27 20:52:45.781584"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 20:52:45.783145"], ["updated_at", "2016-01-27 20:52:45.783145"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tristin Tremblay"], ["job_title", "Dynamic Branding Consultant"], ["greetings", "Id delectus harum sunt consequatur assumenda aspernatur explicabo."], ["summary", "Et quia ullam iure aut officia. Eaque libero ipsam occaecati quidem ab debitis. Facere fugit officiis omnis voluptatem. Eos accusamus et et eum et. Quia aut est."], ["key", "tristin_tremblay"], ["created_at", "2016-01-27 20:52:45.789894"], ["updated_at", "2016-01-27 20:52:45.789894"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:52:45.791909"], ["updated_at", "2016-01-27 20:52:45.791909"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mustafa Lind"], ["job_title", "Internal Marketing Facilitator"], ["greetings", "Est voluptate aut consectetur asperiores nemo illum."], ["summary", "Enim odio sit et voluptatem. Eum pariatur dolorem laboriosam ipsum. Dolor veritatis consequatur aliquid quaerat. Aut et velit aliquid veritatis voluptatem. Velit dolor omnis minus iste."], ["key", "mustafa_lind"], ["created_at", "2016-01-27 20:52:45.796258"], ["updated_at", "2016-01-27 20:52:45.796258"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:52:45.798297"], ["updated_at", "2016-01-27 20:52:45.798297"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Arnulfo Simonis"], ["job_title", "Human Optimization Facilitator"], ["greetings", "Repellat fugiat aut quidem illum ullam ratione."], ["summary", "Iusto impedit adipisci. Asperiores ipsam delectus velit. Dolorum molestiae nam sed repellat."], ["key", "arnulfo_simonis"], ["created_at", "2016-01-27 20:52:45.802349"], ["updated_at", "2016-01-27 20:52:45.802349"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:52:45.804238"], ["updated_at", "2016-01-27 20:52:45.804238"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Connor Funk"], ["job_title", "Human Branding Architect"], ["greetings", "Ad aut voluptatem illo architecto possimus excepturi nisi."], ["summary", "Labore fugiat sunt dolorem dolorum laboriosam ut. Incidunt vel assumenda et voluptatem sint. Qui minima et totam autem nobis maxime et. Quia ipsa repudiandae. Adipisci fuga quae soluta."], ["key", "connor_funk"], ["created_at", "2016-01-27 20:52:45.808710"], ["updated_at", "2016-01-27 20:52:45.808710"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "soluta"], ["key", "soluta"], ["created_at", "2016-01-27 20:52:45.814859"], ["updated_at", "2016-01-27 20:52:45.814859"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 20:52:45.816853"], ["updated_at", "2016-01-27 20:52:45.816853"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:52:45.826070"], ["updated_at", "2016-01-27 20:52:45.826070"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Iron Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:52:45.829293"], ["updated_at", "2016-01-27 20:52:45.829293"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:52:45.831680"], ["updated_at", "2016-01-27 20:52:45.831680"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Paper Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:52:45.833601"], ["updated_at", "2016-01-27 20:52:45.833601"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Noemi Kutch"], ["job_title", "Dynamic Brand Developer"], ["greetings", "Sed eveniet aliquam est at corporis sit numquam."], ["summary", "Temporibus enim neque optio aut eum. Aut nesciunt quisquam tempore aut aliquam aut in. Cum aut repellendus architecto placeat tempora alias. Recusandae qui quidem molestiae ipsa."], ["key", "noemi_kutch"], ["created_at", "2016-01-27 20:52:45.858924"], ["updated_at", "2016-01-27 20:52:45.858924"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 20:52:45.861452"], ["updated_at", "2016-01-27 20:52:45.861452"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolorum"], ["key", "dolorum"], ["created_at", "2016-01-27 20:52:45.863142"], ["updated_at", "2016-01-27 20:52:45.863142"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wool Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:52:45.864978"], ["updated_at", "2016-01-27 20:52:45.864978"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Silk Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:52:45.867473"], ["updated_at", "2016-01-27 20:52:45.867473"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Paper Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:52:45.869389"], ["updated_at", "2016-01-27 20:52:45.869389"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Concrete Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:52:45.871125"], ["updated_at", "2016-01-27 20:52:45.871125"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Florencio Ferry V"], ["job_title", "Chief Response Liaison"], ["greetings", "Unde voluptatem consequatur accusamus omnis et."], ["summary", "Officia sit iste nisi consectetur impedit qui delectus. Dolores dolores quis corrupti ut accusantium totam qui. Rerum iure delectus modi dicta voluptatem. Repudiandae commodi nisi temporibus necessitatibus dolorum. Est consequuntur similique quia perferendis."], ["key", "florencio_ferry_v"], ["created_at", "2016-01-27 20:52:45.889108"], ["updated_at", "2016-01-27 20:52:45.889108"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Rubber Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:52:45.892416"], ["updated_at", "2016-01-27 20:52:45.892416"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:52:45.895041"], ["updated_at", "2016-01-27 20:52:45.895041"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Aluminum Bench"], ["site_id", 1], ["created_at", "2016-01-27 20:52:45.896786"], ["updated_at", "2016-01-27 20:52:45.896786"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Marble Pants"], ["site_id", 1], ["created_at", "2016-01-27 20:52:45.898411"], ["updated_at", "2016-01-27 20:52:45.898411"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.5ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (242.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (309.3ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Helga Welch"], ["job_title", "Dynamic Tactics Facilitator"], ["greetings", "Et doloremque harum ipsam laboriosam mollitia saepe."], ["summary", "Omnis numquam sint est facere reprehenderit. Dolor voluptate deleniti molestias enim ipsum. Quis architecto est. Inventore repudiandae est aut aut qui."], ["key", "helga_welch"], ["created_at", "2016-01-27 20:52:46.232556"], ["updated_at", "2016-01-27 20:52:46.232556"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Marble Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:52:46.237780"], ["updated_at", "2016-01-27 20:52:46.237780"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Concrete Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:52:46.243006"], ["updated_at", "2016-01-27 20:52:46.243006"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Copper Shirt"], ["site_id", 1], ["created_at", "2016-01-27 20:52:46.248307"], ["updated_at", "2016-01-27 20:52:46.248307"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Granite Hat"], ["site_id", 1], ["created_at", "2016-01-27 20:52:46.252995"], ["updated_at", "2016-01-27 20:52:46.252995"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (8.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.4ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mortimer Wehner"], ["job_title", "District Web Designer"], ["greetings", "Natus nisi fugiat velit."], ["summary", "Ut qui nobis. Voluptate et corrupti ipsam perspiciatis eos libero. Sequi maiores repudiandae ullam similique hic ipsam. Aut hic qui atque expedita est omnis. Quo adipisci fugit et beatae."], ["key", "mortimer_wehner"], ["created_at", "2016-01-27 20:52:46.276259"], ["updated_at", "2016-01-27 20:52:46.276259"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptas"], ["key", "voluptas"], ["created_at", "2016-01-27 20:52:46.278586"], ["updated_at", "2016-01-27 20:52:46.278586"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "deleniti"], ["key", "deleniti"], ["created_at", "2016-01-27 20:52:46.280414"], ["updated_at", "2016-01-27 20:52:46.280414"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:52:46.283498"], ["updated_at", "2016-01-27 20:52:46.283498"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Copper Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:52:46.287391"], ["updated_at", "2016-01-27 20:52:46.287391"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Iron Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:52:46.291361"], ["updated_at", "2016-01-27 20:52:46.291361"]]  (0.6ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Cotton Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:52:46.295114"], ["updated_at", "2016-01-27 20:52:46.295114"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.4ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (33.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Diego Torp"], ["job_title", "Product Marketing Director"], ["greetings", "Praesentium odit qui enim aut doloribus quibusdam earum."], ["summary", "Provident incidunt ducimus blanditiis porro harum ratione. Accusantium soluta esse minus quae. Quam optio pariatur ab. Odit accusantium accusamus incidunt minima."], ["key", "diego_torp"], ["created_at", "2016-01-27 20:52:46.339209"], ["updated_at", "2016-01-27 20:52:46.339209"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolorem"], ["key", "dolorem"], ["created_at", "2016-01-27 20:52:46.342170"], ["updated_at", "2016-01-27 20:52:46.342170"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "labore"], ["key", "labore"], ["created_at", "2016-01-27 20:52:46.344420"], ["updated_at", "2016-01-27 20:52:46.344420"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Granite Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:52:46.347758"], ["updated_at", "2016-01-27 20:52:46.347758"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Paper Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:52:46.350516"], ["updated_at", "2016-01-27 20:52:46.350516"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Cotton Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:52:46.353938"], ["updated_at", "2016-01-27 20:52:46.353938"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Bronze Car"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:52:46.356551"], ["updated_at", "2016-01-27 20:52:46.356551"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.5ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (22.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Matteo Strosin"], ["job_title", "Principal Integration Liaison"], ["greetings", "Dolorem quo qui quaerat magnam aut et fuga."], ["summary", "Incidunt rerum ut placeat neque dolorem et eligendi. Sunt dolores odio aspernatur delectus suscipit similique. Laudantium dolor facilis dolor sed."], ["key", "dr_matteo_strosin"], ["created_at", "2016-01-27 20:52:46.389738"], ["updated_at", "2016-01-27 20:52:46.389738"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.0ms)  (1.3ms) rollback transaction  (0.3ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Don Skiles"], ["job_title", "Direct Infrastructure Orchestrator"], ["greetings", "Nostrum incidunt beatae dicta adipisci blanditiis eos sed voluptas."], ["summary", "Nisi et animi est voluptatem iste explicabo provident. Eum cumque incidunt et vitae. Temporibus ab aut dolore quo. Ullam voluptas veritatis ipsam vel quam. Assumenda ex aut aspernatur molestias sit officiis."], ["key", "don_skiles"], ["created_at", "2016-01-27 20:52:46.429662"], ["updated_at", "2016-01-27 20:52:46.429662"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (6.0ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alaina Satterfield III"], ["job_title", "Internal Marketing Director"], ["greetings", "Impedit numquam beatae quo et."], ["summary", "Voluptatem laudantium et veritatis doloremque aut corporis. Nisi dolore laborum et maiores alias nam. Voluptatibus est eos iure animi. Aut recusandae ab dolores sit eum repudiandae dolorem. Nostrum dolore ut eos vero magni."], ["key", "alaina_satterfield_iii"], ["created_at", "2016-01-27 20:52:46.445574"], ["updated_at", "2016-01-27 20:52:46.445574"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iusto"], ["key", "iusto"], ["created_at", "2016-01-27 20:52:46.448319"], ["updated_at", "2016-01-27 20:52:46.448319"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "porro"], ["key", "porro"], ["created_at", "2016-01-27 20:52:46.451057"], ["updated_at", "2016-01-27 20:52:46.451057"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Plastic Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:52:46.453659"], ["updated_at", "2016-01-27 20:52:46.453659"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Steel Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:52:46.456404"], ["updated_at", "2016-01-27 20:52:46.456404"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Paper Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:52:46.459600"], ["updated_at", "2016-01-27 20:52:46.459600"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Copper Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:52:46.464239"], ["updated_at", "2016-01-27 20:52:46.464239"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.6ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (19.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Anya Kling"], ["job_title", "Investor Security Facilitator"], ["greetings", "Repellendus nisi aperiam soluta reprehenderit est corporis."], ["summary", "Autem architecto nulla rerum odit vel ipsam cupiditate. Quae non excepturi labore soluta dolorem quam. Praesentium autem quasi veniam non cupiditate qui."], ["key", "dr_anya_kling"], ["created_at", "2016-01-27 20:54:07.674433"], ["updated_at", "2016-01-27 20:54:07.674433"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:54:07.691870"], ["updated_at", "2016-01-27 20:54:07.691870"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ferne Wintheiser III"], ["job_title", "Customer Assurance Officer"], ["greetings", "Et consectetur est ullam est dignissimos illo."], ["summary", "Modi soluta quia. Quo quia libero itaque aut. Corporis et soluta est qui. Quod natus est impedit iusto suscipit rerum enim."], ["key", "ferne_wintheiser_iii"], ["created_at", "2016-01-27 20:54:07.698239"], ["updated_at", "2016-01-27 20:54:07.698239"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:54:07.700287"], ["updated_at", "2016-01-27 20:54:07.700287"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Betty Schmitt"], ["job_title", "Product Data Developer"], ["greetings", "Et qui voluptates qui animi magnam laborum culpa doloribus."], ["summary", "Quam aut sunt est sit laboriosam. Odio eaque eos ea. Maiores aliquam nesciunt quia iure nostrum itaque molestiae. Non ea molestias inventore similique. Libero laborum est repellendus."], ["key", "betty_schmitt"], ["created_at", "2016-01-27 20:54:07.703640"], ["updated_at", "2016-01-27 20:54:07.703640"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 20:54:07.706220"], ["updated_at", "2016-01-27 20:54:07.706220"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Mae Kuhn"], ["job_title", "Corporate Paradigm Planner"], ["greetings", "Voluptates dicta cum aperiam earum nostrum molestias."], ["summary", "Dicta maiores inventore ipsam possimus voluptatum. Sed quidem cumque rerum ipsum. Ut quidem totam tenetur deleniti doloribus et. Sapiente quia vel expedita molestiae assumenda et hic."], ["key", "mr_mae_kuhn"], ["created_at", "2016-01-27 20:54:07.713373"], ["updated_at", "2016-01-27 20:54:07.713373"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:54:07.715360"], ["updated_at", "2016-01-27 20:54:07.715360"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Orpha Smitham"], ["job_title", "Central Usability Facilitator"], ["greetings", "Et deserunt eos harum voluptatem dignissimos eum maxime ipsa."], ["summary", "Totam sunt autem. At voluptate sit necessitatibus nostrum et illum. Quasi necessitatibus nobis nesciunt rerum vero perferendis est. Consequatur et ad tempora ut ab rem aut. Libero sed consectetur vero."], ["key", "orpha_smitham"], ["created_at", "2016-01-27 20:54:07.720701"], ["updated_at", "2016-01-27 20:54:07.720701"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:54:07.723288"], ["updated_at", "2016-01-27 20:54:07.723288"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Imelda Hills"], ["job_title", "International Assurance Developer"], ["greetings", "Sunt suscipit quaerat aperiam iste earum."], ["summary", "Nesciunt sit earum quia cupiditate non accusantium. Saepe dolor harum nulla voluptas ipsum aliquid nam. Veritatis eius fuga et. Eos corrupti illum et."], ["key", "imelda_hills"], ["created_at", "2016-01-27 20:54:07.727630"], ["updated_at", "2016-01-27 20:54:07.727630"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:54:07.729666"], ["updated_at", "2016-01-27 20:54:07.729666"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mohammed Cummings"], ["job_title", "Lead Marketing Technician"], ["greetings", "Vel nobis fugit quasi autem accusantium."], ["summary", "Fuga aut consequatur. Ex in recusandae et nemo tenetur. Quam hic et ipsam. Commodi ipsam corrupti amet nemo aut odit aut. Velit in et voluptatem porro excepturi."], ["key", "mohammed_cummings"], ["created_at", "2016-01-27 20:54:07.734194"], ["updated_at", "2016-01-27 20:54:07.734194"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "at"], ["key", "at"], ["created_at", "2016-01-27 20:54:07.740497"], ["updated_at", "2016-01-27 20:54:07.740497"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sint"], ["key", "sint"], ["created_at", "2016-01-27 20:54:07.742535"], ["updated_at", "2016-01-27 20:54:07.742535"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Wooden Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:54:07.749845"], ["updated_at", "2016-01-27 20:54:07.749845"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Granite Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:54:07.752063"], ["updated_at", "2016-01-27 20:54:07.752063"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Leather Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:54:07.754125"], ["updated_at", "2016-01-27 20:54:07.754125"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Steel Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:54:07.756299"], ["updated_at", "2016-01-27 20:54:07.756299"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Garrick Bogisich"], ["job_title", "Lead Usability Designer"], ["greetings", "Non at et dolore."], ["summary", "Magnam molestias quia. Voluptatem aut ut qui. Sed velit cumque aut non eum aut eos. Qui mollitia qui facere itaque distinctio cum. Perspiciatis eum error quod temporibus iure."], ["key", "garrick_bogisich"], ["created_at", "2016-01-27 20:54:07.780903"], ["updated_at", "2016-01-27 20:54:07.780903"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tenetur"], ["key", "tenetur"], ["created_at", "2016-01-27 20:54:07.783103"], ["updated_at", "2016-01-27 20:54:07.783103"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ab"], ["key", "ab"], ["created_at", "2016-01-27 20:54:07.786455"], ["updated_at", "2016-01-27 20:54:07.786455"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Silk Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:54:07.789680"], ["updated_at", "2016-01-27 20:54:07.789680"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Steel Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:54:07.792416"], ["updated_at", "2016-01-27 20:54:07.792416"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Linen Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:54:07.795044"], ["updated_at", "2016-01-27 20:54:07.795044"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Paper Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:54:07.797508"], ["updated_at", "2016-01-27 20:54:07.797508"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gregoria Konopelski"], ["job_title", "Direct Accountability Engineer"], ["greetings", "Magni odio nihil atque occaecati."], ["summary", "Sed repudiandae reiciendis. Ipsum repellat sed et dicta. Eligendi ab nemo qui porro."], ["key", "gregoria_konopelski"], ["created_at", "2016-01-27 20:54:07.816178"], ["updated_at", "2016-01-27 20:54:07.816178"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wool Shirt"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:54:07.820266"], ["updated_at", "2016-01-27 20:54:07.820266"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Leather Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:54:07.822589"], ["updated_at", "2016-01-27 20:54:07.822589"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Steel Car"], ["site_id", 1], ["created_at", "2016-01-27 20:54:07.824317"], ["updated_at", "2016-01-27 20:54:07.824317"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Bronze Coat"], ["site_id", 1], ["created_at", "2016-01-27 20:54:07.825920"], ["updated_at", "2016-01-27 20:54:07.825920"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (4.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (16.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (231.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (298.6ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Audra Block"], ["job_title", "Customer Web Facilitator"], ["greetings", "Omnis labore porro doloribus."], ["summary", "Sed quas ut dolores provident. Repellendus eum at. Distinctio ut ullam voluptas. Non iste doloribus et voluptate odio temporibus."], ["key", "mr_audra_block"], ["created_at", "2016-01-27 20:54:08.149676"], ["updated_at", "2016-01-27 20:54:08.149676"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wool Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:54:08.154845"], ["updated_at", "2016-01-27 20:54:08.154845"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wooden Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:54:08.159914"], ["updated_at", "2016-01-27 20:54:08.159914"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Computer"], ["site_id", 1], ["created_at", "2016-01-27 20:54:08.164448"], ["updated_at", "2016-01-27 20:54:08.164448"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Steel Hat"], ["site_id", 1], ["created_at", "2016-01-27 20:54:08.168651"], ["updated_at", "2016-01-27 20:54:08.168651"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (9.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (16.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alfreda Crist"], ["job_title", "Forward Directives Architect"], ["greetings", "Tenetur repellendus ut ut quasi sapiente architecto aut."], ["summary", "Dolorum ut dolore. Itaque vero nam. Et et distinctio modi laborum rem. Aperiam omnis reprehenderit."], ["key", "alfreda_crist"], ["created_at", "2016-01-27 20:54:08.194068"], ["updated_at", "2016-01-27 20:54:08.194068"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "occaecati"], ["key", "occaecati"], ["created_at", "2016-01-27 20:54:08.196237"], ["updated_at", "2016-01-27 20:54:08.196237"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-27 20:54:08.198199"], ["updated_at", "2016-01-27 20:54:08.198199"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:54:08.200844"], ["updated_at", "2016-01-27 20:54:08.200844"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wool Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:54:08.204997"], ["updated_at", "2016-01-27 20:54:08.204997"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Silk Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:54:08.209178"], ["updated_at", "2016-01-27 20:54:08.209178"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wool Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:54:08.212779"], ["updated_at", "2016-01-27 20:54:08.212779"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (32.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.6ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Esta Parisian"], ["job_title", "Corporate Tactics Manager"], ["greetings", "In natus molestiae optio adipisci."], ["summary", "Consequuntur provident porro maiores vero ipsa. Doloribus commodi alias repellendus ratione. Nihil veritatis eos nam. Quas ratione eligendi cumque eaque non."], ["key", "esta_parisian"], ["created_at", "2016-01-27 20:54:08.255056"], ["updated_at", "2016-01-27 20:54:08.255056"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nobis"], ["key", "nobis"], ["created_at", "2016-01-27 20:54:08.257748"], ["updated_at", "2016-01-27 20:54:08.257748"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dignissimos"], ["key", "dignissimos"], ["created_at", "2016-01-27 20:54:08.260093"], ["updated_at", "2016-01-27 20:54:08.260093"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wooden Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:54:08.263356"], ["updated_at", "2016-01-27 20:54:08.263356"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Granite Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:54:08.266631"], ["updated_at", "2016-01-27 20:54:08.266631"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wool Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:54:08.269803"], ["updated_at", "2016-01-27 20:54:08.269803"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Steel Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:54:08.272869"], ["updated_at", "2016-01-27 20:54:08.272869"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.8ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ezra Streich V"], ["job_title", "Senior Security Director"], ["greetings", "Natus sed quae dolores esse labore consectetur est provident."], ["summary", "Tempora earum quo esse quod dicta et. Et saepe eum qui itaque maxime sapiente. Laborum corrupti ea."], ["key", "ezra_streich_v"], ["created_at", "2016-01-27 20:54:08.304950"], ["updated_at", "2016-01-27 20:54:08.304950"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.4ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (18.6ms)  (1.3ms) rollback transaction  (0.3ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Abbie Kozey"], ["job_title", "Internal Branding Planner"], ["greetings", "Sit asperiores nam expedita quos dignissimos et deleniti dolorem."], ["summary", "Neque nostrum aliquam. Nihil nemo maxime quo in. Error vel cumque aliquid facilis. Odit consequatur ullam iure. A optio temporibus repellendus."], ["key", "abbie_kozey"], ["created_at", "2016-01-27 20:54:08.343859"], ["updated_at", "2016-01-27 20:54:08.343859"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (4.0ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bertha Monahan"], ["job_title", "Direct Paradigm Designer"], ["greetings", "Error accusamus et ratione repudiandae laborum enim asperiores adipisci."], ["summary", "Ipsa sunt dolor maiores. Commodi voluptatem facilis. Dignissimos nesciunt eum qui saepe."], ["key", "bertha_monahan"], ["created_at", "2016-01-27 20:54:08.357640"], ["updated_at", "2016-01-27 20:54:08.357640"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consequatur"], ["key", "consequatur"], ["created_at", "2016-01-27 20:54:08.360806"], ["updated_at", "2016-01-27 20:54:08.360806"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consequatur"], ["key", "consequatur"], ["created_at", "2016-01-27 20:54:08.363648"], ["updated_at", "2016-01-27 20:54:08.363648"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:54:08.366254"], ["updated_at", "2016-01-27 20:54:08.366254"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:54:08.369037"], ["updated_at", "2016-01-27 20:54:08.369037"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Cotton Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:54:08.372065"], ["updated_at", "2016-01-27 20:54:08.372065"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Aluminum Bag"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:54:08.375394"], ["updated_at", "2016-01-27 20:54:08.375394"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.2ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (18.3ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Clifton Wintheiser"], ["job_title", "Chief Marketing Strategist"], ["greetings", "Ipsam et ut velit."], ["summary", "Id nam maxime minus nemo. Minima maiores error recusandae neque tempore qui. Sed veniam aut qui quam itaque. Velit est explicabo deleniti qui hic sit. Ut dolores non aut ipsa ad."], ["key", "clifton_wintheiser"], ["created_at", "2016-01-27 20:55:44.155192"], ["updated_at", "2016-01-27 20:55:44.155192"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:55:44.171386"], ["updated_at", "2016-01-27 20:55:44.171386"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Anderson Koch"], ["job_title", "Senior Infrastructure Developer"], ["greetings", "Dolores et et assumenda nulla modi."], ["summary", "Neque est atque qui et perspiciatis deleniti quia. Natus id velit. Rem porro ut illo id quod est. Libero voluptatum quia similique unde consequatur qui beatae."], ["key", "miss_anderson_koch"], ["created_at", "2016-01-27 20:55:44.177476"], ["updated_at", "2016-01-27 20:55:44.177476"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:55:44.179510"], ["updated_at", "2016-01-27 20:55:44.179510"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Oral Trantow"], ["job_title", "Chief Accounts Liaison"], ["greetings", "Ut quae consequuntur odit maiores sit."], ["summary", "Labore neque est eos. Ut ut illum autem. Laborum optio eius et asperiores consequatur earum voluptatem. Occaecati officiis error voluptatem qui rerum nihil nulla."], ["key", "mrs_oral_trantow"], ["created_at", "2016-01-27 20:55:44.182452"], ["updated_at", "2016-01-27 20:55:44.182452"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 20:55:44.184380"], ["updated_at", "2016-01-27 20:55:44.184380"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Georgette Stracke"], ["job_title", "Senior Accountability Executive"], ["greetings", "Nobis et dolorem nihil culpa dolore."], ["summary", "Nisi voluptate libero distinctio est. Aut tempora eveniet et eaque enim architecto id. Numquam et vero quae quisquam voluptatem minus dolorem. Delectus aliquam impedit."], ["key", "georgette_stracke"], ["created_at", "2016-01-27 20:55:44.191602"], ["updated_at", "2016-01-27 20:55:44.191602"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:55:44.193667"], ["updated_at", "2016-01-27 20:55:44.193667"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alana Yost"], ["job_title", "Product Quality Developer"], ["greetings", "Autem repellendus commodi accusamus est numquam itaque ex."], ["summary", "Illum officia sed provident id ut. Explicabo ea aut omnis eligendi. Alias quia aut quam dolorem. Quidem qui sed autem corporis blanditiis. Et qui dolores ut."], ["key", "alana_yost"], ["created_at", "2016-01-27 20:55:44.197402"], ["updated_at", "2016-01-27 20:55:44.197402"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:55:44.199334"], ["updated_at", "2016-01-27 20:55:44.199334"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Vallie Rowe"], ["job_title", "Dynamic Factors Developer"], ["greetings", "Doloremque voluptates mollitia excepturi qui."], ["summary", "Dolorum vel et et aspernatur consequatur voluptates. Et qui eveniet perferendis voluptatum sint. Voluptas aliquam vel quia unde quod."], ["key", "dr_vallie_rowe"], ["created_at", "2016-01-27 20:55:44.203432"], ["updated_at", "2016-01-27 20:55:44.203432"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 20:55:44.205475"], ["updated_at", "2016-01-27 20:55:44.205475"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gaylord Crooks"], ["job_title", "Direct Data Orchestrator"], ["greetings", "Esse dolorem sint tempore et aut sit consectetur aut."], ["summary", "Nulla atque repudiandae dolor eligendi. Dignissimos et est. Omnis non ut. Est labore id repellat qui qui sint. Aut esse qui quis eaque sint quasi."], ["key", "gaylord_crooks"], ["created_at", "2016-01-27 20:55:44.209699"], ["updated_at", "2016-01-27 20:55:44.209699"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "omnis"], ["key", "omnis"], ["created_at", "2016-01-27 20:55:44.214766"], ["updated_at", "2016-01-27 20:55:44.214766"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "esse"], ["key", "esse"], ["created_at", "2016-01-27 20:55:44.216561"], ["updated_at", "2016-01-27 20:55:44.216561"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Iron Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:55:44.225057"], ["updated_at", "2016-01-27 20:55:44.225057"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Silk Plate"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:55:44.227515"], ["updated_at", "2016-01-27 20:55:44.227515"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Cotton Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:55:44.229421"], ["updated_at", "2016-01-27 20:55:44.229421"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Cotton Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:55:44.231202"], ["updated_at", "2016-01-27 20:55:44.231202"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Laurine Volkman"], ["job_title", "Corporate Infrastructure Representative"], ["greetings", "Iusto et eum enim fugit."], ["summary", "Et error itaque quia sit laudantium cum. Aperiam nulla et asperiores iusto dolore. Ab odit voluptatem. Dignissimos omnis autem quia occaecati ullam."], ["key", "laurine_volkman"], ["created_at", "2016-01-27 20:55:44.255615"], ["updated_at", "2016-01-27 20:55:44.255615"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 20:55:44.257624"], ["updated_at", "2016-01-27 20:55:44.257624"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "totam"], ["key", "totam"], ["created_at", "2016-01-27 20:55:44.259178"], ["updated_at", "2016-01-27 20:55:44.259178"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Marble Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:55:44.261021"], ["updated_at", "2016-01-27 20:55:44.261021"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Wooden Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:55:44.263006"], ["updated_at", "2016-01-27 20:55:44.263006"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wooden Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:55:44.266331"], ["updated_at", "2016-01-27 20:55:44.266331"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Linen Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:55:44.268500"], ["updated_at", "2016-01-27 20:55:44.268500"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Missouri Hahn V"], ["job_title", "District Operations Planner"], ["greetings", "Quia nostrum incidunt id ad recusandae consequuntur dolorem."], ["summary", "Consectetur delectus velit repellendus animi fugit. Numquam eum incidunt dolore qui reprehenderit porro neque. Cupiditate laborum hic. Enim dolores animi accusantium dolorem at ut. Explicabo rerum maxime dolorem."], ["key", "missouri_hahn_v"], ["created_at", "2016-01-27 20:55:44.287375"], ["updated_at", "2016-01-27 20:55:44.287375"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Bronze Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:55:44.290607"], ["updated_at", "2016-01-27 20:55:44.290607"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Marble Wallet"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:55:44.292926"], ["updated_at", "2016-01-27 20:55:44.292926"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Watch"], ["site_id", 1], ["created_at", "2016-01-27 20:55:44.294616"], ["updated_at", "2016-01-27 20:55:44.294616"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Aluminum Chair"], ["site_id", 1], ["created_at", "2016-01-27 20:55:44.296242"], ["updated_at", "2016-01-27 20:55:44.296242"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.3ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (235.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (303.7ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Casimir Bahringer"], ["job_title", "Product Marketing Officer"], ["greetings", "Soluta quos esse ullam qui id eaque."], ["summary", "Voluptas magni eos eligendi et. Aut ducimus quia ullam quibusdam. Est assumenda necessitatibus qui quasi. Doloremque vitae dolorem vel dicta. Id perspiciatis labore ullam dicta et harum quidem."], ["key", "dr_casimir_bahringer"], ["created_at", "2016-01-27 20:55:44.625014"], ["updated_at", "2016-01-27 20:55:44.625014"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Bronze Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:55:44.630264"], ["updated_at", "2016-01-27 20:55:44.630264"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Bronze Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 20:55:44.634996"], ["updated_at", "2016-01-27 20:55:44.634996"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Paper Lamp"], ["site_id", 1], ["created_at", "2016-01-27 20:55:44.639419"], ["updated_at", "2016-01-27 20:55:44.639419"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Iron Bag"], ["site_id", 1], ["created_at", "2016-01-27 20:55:44.643747"], ["updated_at", "2016-01-27 20:55:44.643747"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.3ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Pattie Eichmann V"], ["job_title", "International Markets Liaison"], ["greetings", "Asperiores consectetur quod distinctio quidem eos voluptatem et ipsam."], ["summary", "Et non sint officiis doloribus. Quasi error voluptatem asperiores reprehenderit. Unde consequatur deserunt maiores laboriosam numquam."], ["key", "pattie_eichmann_v"], ["created_at", "2016-01-27 20:55:44.677180"], ["updated_at", "2016-01-27 20:55:44.677180"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "labore"], ["key", "labore"], ["created_at", "2016-01-27 20:55:44.679576"], ["updated_at", "2016-01-27 20:55:44.679576"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "in"], ["key", "in"], ["created_at", "2016-01-27 20:55:44.681461"], ["updated_at", "2016-01-27 20:55:44.681461"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Rubber Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:55:44.683994"], ["updated_at", "2016-01-27 20:55:44.683994"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:55:44.687664"], ["updated_at", "2016-01-27 20:55:44.687664"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Bronze Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:55:44.691622"], ["updated_at", "2016-01-27 20:55:44.691622"]]  (0.4ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wooden Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:55:44.695035"], ["updated_at", "2016-01-27 20:55:44.695035"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.2ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (31.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ayla Gleason"], ["job_title", "Dynamic Implementation Executive"], ["greetings", "Et corporis et et officiis dolorum."], ["summary", "Debitis commodi a corporis dicta placeat molestias libero. Perspiciatis similique quis omnis impedit nihil. Dolorem reiciendis molestias numquam omnis consequatur quo quidem. Aliquid cumque rem quia libero reiciendis ipsa odio."], ["key", "ayla_gleason"], ["created_at", "2016-01-27 20:55:44.735619"], ["updated_at", "2016-01-27 20:55:44.735619"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quas"], ["key", "quas"], ["created_at", "2016-01-27 20:55:44.738286"], ["updated_at", "2016-01-27 20:55:44.738286"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "numquam"], ["key", "numquam"], ["created_at", "2016-01-27 20:55:44.740641"], ["updated_at", "2016-01-27 20:55:44.740641"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Silk Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:55:44.745348"], ["updated_at", "2016-01-27 20:55:44.745348"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Bronze Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:55:44.748758"], ["updated_at", "2016-01-27 20:55:44.748758"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Silk Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:55:44.751346"], ["updated_at", "2016-01-27 20:55:44.751346"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Rubber Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:55:44.754471"], ["updated_at", "2016-01-27 20:55:44.754471"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (22.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kailee Wyman"], ["job_title", "Internal Data Officer"], ["greetings", "Sit voluptatem iusto adipisci aliquid."], ["summary", "Assumenda odit facilis molestias dolor expedita. Et et velit veniam similique qui. Qui repellat eum quaerat recusandae nulla quia. Iure quod dolorem veniam adipisci harum non corporis."], ["key", "kailee_wyman"], ["created_at", "2016-01-27 20:55:44.785701"], ["updated_at", "2016-01-27 20:55:44.785701"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (16.7ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Rosemary Gulgowski"], ["job_title", "Corporate Interactions Administrator"], ["greetings", "Voluptatem beatae esse id dicta omnis non eligendi."], ["summary", "Eos atque iste. Eligendi dolores aut. Rem eius molestiae aut vero. Dolorum exercitationem repellendus architecto. Blanditiis esse in rerum."], ["key", "rosemary_gulgowski"], ["created_at", "2016-01-27 20:55:44.824425"], ["updated_at", "2016-01-27 20:55:44.824425"]]  (0.5ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (4.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Chanelle McLaughlin"], ["job_title", "Senior Infrastructure Orchestrator"], ["greetings", "Ex qui voluptas assumenda optio a."], ["summary", "Ad occaecati dolores. Dolorem et debitis. Quia veritatis saepe iure eum atque error ex. Sunt dicta at rerum."], ["key", "chanelle_mclaughlin"], ["created_at", "2016-01-27 20:55:44.838821"], ["updated_at", "2016-01-27 20:55:44.838821"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "minus"], ["key", "minus"], ["created_at", "2016-01-27 20:55:44.841637"], ["updated_at", "2016-01-27 20:55:44.841637"]]  (0.7ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "enim"], ["key", "enim"], ["created_at", "2016-01-27 20:55:44.844225"], ["updated_at", "2016-01-27 20:55:44.844225"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 20:55:44.846786"], ["updated_at", "2016-01-27 20:55:44.846786"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Aluminum Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 20:55:44.849771"], ["updated_at", "2016-01-27 20:55:44.849771"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Paper Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 20:55:44.852865"], ["updated_at", "2016-01-27 20:55:44.852865"]]  (1.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Granite Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 20:55:44.857750"], ["updated_at", "2016-01-27 20:55:44.857750"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (3.8ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Wava Buckridge"], ["job_title", "Internal Communications Orchestrator"], ["greetings", "Quia ut ut officiis reprehenderit dolorem qui corporis modi."], ["summary", "Ad voluptatibus in maiores blanditiis adipisci enim quibusdam. Voluptatem mollitia repellat. Quas alias corrupti."], ["key", "miss_wava_buckridge"], ["created_at", "2016-01-27 21:02:17.145262"], ["updated_at", "2016-01-27 21:02:17.145262"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:02:17.161989"], ["updated_at", "2016-01-27 21:02:17.161989"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Gretchen Weber"], ["job_title", "Regional Usability Analyst"], ["greetings", "Et consequuntur ullam atque perferendis voluptas."], ["summary", "Nisi mollitia eum sed. Ducimus aut ut reprehenderit assumenda quasi ipsum. Quos dolores ducimus sed."], ["key", "miss_gretchen_weber"], ["created_at", "2016-01-27 21:02:17.168154"], ["updated_at", "2016-01-27 21:02:17.168154"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:02:17.170402"], ["updated_at", "2016-01-27 21:02:17.170402"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dejon Hudson"], ["job_title", "Future Program Planner"], ["greetings", "Facere sed iure autem quam nesciunt id blanditiis maiores."], ["summary", "In sunt et est sit occaecati molestiae. Odio totam sunt ut accusantium. Aut ut et incidunt ipsum sint quo."], ["key", "dejon_hudson"], ["created_at", "2016-01-27 21:02:17.173149"], ["updated_at", "2016-01-27 21:02:17.173149"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:02:17.175975"], ["updated_at", "2016-01-27 21:02:17.175975"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Edward Grady"], ["job_title", "Chief Branding Facilitator"], ["greetings", "Numquam voluptatibus voluptate quidem."], ["summary", "Consequatur aperiam occaecati. Et perspiciatis maiores deleniti blanditiis rerum est nam. Inventore corrupti voluptatem."], ["key", "ms_edward_grady"], ["created_at", "2016-01-27 21:02:17.183307"], ["updated_at", "2016-01-27 21:02:17.183307"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:02:17.185468"], ["updated_at", "2016-01-27 21:02:17.185468"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gregorio Breitenberg"], ["job_title", "Future Optimization Assistant"], ["greetings", "Dicta aut iusto deleniti unde ipsa voluptates."], ["summary", "Saepe vitae ab quia quisquam tempore. Incidunt doloremque excepturi modi. Non quam deserunt. Velit vel debitis enim."], ["key", "gregorio_breitenberg"], ["created_at", "2016-01-27 21:02:17.190006"], ["updated_at", "2016-01-27 21:02:17.190006"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:02:17.192949"], ["updated_at", "2016-01-27 21:02:17.192949"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Earline Kassulke"], ["job_title", "Human Solutions Architect"], ["greetings", "Impedit corporis in ut perferendis praesentium."], ["summary", "Neque mollitia sequi nisi quia pariatur qui adipisci. Possimus esse eaque deserunt eos magni. A sed perspiciatis officiis. Quaerat voluptatem quo necessitatibus sed."], ["key", "earline_kassulke"], ["created_at", "2016-01-27 21:02:17.198115"], ["updated_at", "2016-01-27 21:02:17.198115"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:02:17.200702"], ["updated_at", "2016-01-27 21:02:17.200702"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Nathan Nicolas"], ["job_title", "Regional Program Agent"], ["greetings", "Et sed qui ipsa."], ["summary", "Quod aliquam impedit quam vitae sed hic. Tempora dolores eos. Voluptatem et omnis illo. Culpa placeat doloremque molestiae saepe minus nesciunt corrupti."], ["key", "ms_nathan_nicolas"], ["created_at", "2016-01-27 21:02:17.207981"], ["updated_at", "2016-01-27 21:02:17.207981"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "vel"], ["key", "vel"], ["created_at", "2016-01-27 21:02:17.213828"], ["updated_at", "2016-01-27 21:02:17.213828"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "libero"], ["key", "libero"], ["created_at", "2016-01-27 21:02:17.215719"], ["updated_at", "2016-01-27 21:02:17.215719"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Marble Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:02:17.223979"], ["updated_at", "2016-01-27 21:02:17.223979"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Bronze Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:02:17.226562"], ["updated_at", "2016-01-27 21:02:17.226562"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Bronze Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:02:17.228617"], ["updated_at", "2016-01-27 21:02:17.228617"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Copper Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:02:17.230522"], ["updated_at", "2016-01-27 21:02:17.230522"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Marietta McDermott"], ["job_title", "Dynamic Assurance Planner"], ["greetings", "Qui magnam numquam temporibus quidem maiores dolore aliquid autem."], ["summary", "Quo rerum nam voluptatum et minus ut. Dolor accusamus quasi. Sed maxime esse soluta voluptatem necessitatibus alias. Rerum maxime quia laudantium qui aperiam. Est fuga et."], ["key", "marietta_mcdermott"], ["created_at", "2016-01-27 21:02:17.256910"], ["updated_at", "2016-01-27 21:02:17.256910"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dignissimos"], ["key", "dignissimos"], ["created_at", "2016-01-27 21:02:17.258991"], ["updated_at", "2016-01-27 21:02:17.258991"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "libero"], ["key", "libero"], ["created_at", "2016-01-27 21:02:17.260586"], ["updated_at", "2016-01-27 21:02:17.260586"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Granite Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:02:17.262433"], ["updated_at", "2016-01-27 21:02:17.262433"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Concrete Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:02:17.264809"], ["updated_at", "2016-01-27 21:02:17.264809"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Granite Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:02:17.266751"], ["updated_at", "2016-01-27 21:02:17.266751"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Iron Bag"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:02:17.268689"], ["updated_at", "2016-01-27 21:02:17.268689"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kristin Paucek"], ["job_title", "Customer Accountability Director"], ["greetings", "Nisi sequi et laboriosam ullam veritatis velit deleniti."], ["summary", "Quia est quibusdam. Optio fugiat molestias. Debitis est suscipit doloremque."], ["key", "kristin_paucek"], ["created_at", "2016-01-27 21:02:17.290522"], ["updated_at", "2016-01-27 21:02:17.290522"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nulla"], ["key", "nulla"], ["created_at", "2016-01-27 21:02:17.292592"], ["updated_at", "2016-01-27 21:02:17.292592"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ad"], ["key", "ad"], ["created_at", "2016-01-27 21:02:17.295042"], ["updated_at", "2016-01-27 21:02:17.295042"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Concrete Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:02:17.296992"], ["updated_at", "2016-01-27 21:02:17.296992"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Plastic Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:02:17.299592"], ["updated_at", "2016-01-27 21:02:17.299592"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Paper Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:02:17.301596"], ["updated_at", "2016-01-27 21:02:17.301596"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Bronze Bag"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:02:17.303566"], ["updated_at", "2016-01-27 21:02:17.303566"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cleve Hammes"], ["job_title", "Forward Program Architect"], ["greetings", "Quis fugiat consectetur natus dolor vero et commodi totam."], ["summary", "Harum officiis reprehenderit. Non neque a ut. Deleniti accusantium qui voluptatem ab. Dicta quaerat quasi natus porro. Ratione dolore nihil voluptatum eos explicabo facilis."], ["key", "cleve_hammes"], ["created_at", "2016-01-27 21:02:17.314082"], ["updated_at", "2016-01-27 21:02:17.314082"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Steel Bench"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:02:17.316920"], ["updated_at", "2016-01-27 21:02:17.316920"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Plastic Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:02:17.319964"], ["updated_at", "2016-01-27 21:02:17.319964"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Marble Lamp"], ["site_id", 1], ["created_at", "2016-01-27 21:02:17.321952"], ["updated_at", "2016-01-27 21:02:17.321952"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Leather Table"], ["site_id", 1], ["created_at", "2016-01-27 21:02:17.324337"], ["updated_at", "2016-01-27 21:02:17.324337"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.1ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (232.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (300.1ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Loyal Fisher"], ["job_title", "International Usability Director"], ["greetings", "Illum facere corrupti rerum doloribus dolores eius id quibusdam."], ["summary", "Asperiores ipsa doloremque sunt. Perspiciatis itaque et explicabo dolorem libero modi rerum. Et maiores minus est. Voluptatibus nam ex est sapiente voluptatem itaque est. Odit qui sunt quasi rerum vel aut nostrum."], ["key", "loyal_fisher"], ["created_at", "2016-01-27 21:02:17.651058"], ["updated_at", "2016-01-27 21:02:17.651058"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Cotton Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:02:17.656137"], ["updated_at", "2016-01-27 21:02:17.656137"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Steel Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:02:17.661687"], ["updated_at", "2016-01-27 21:02:17.661687"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Wool Bench"], ["site_id", 1], ["created_at", "2016-01-27 21:02:17.665798"], ["updated_at", "2016-01-27 21:02:17.665798"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Bronze Watch"], ["site_id", 1], ["created_at", "2016-01-27 21:02:17.669771"], ["updated_at", "2016-01-27 21:02:17.669771"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.0ms) Portfolio::SiteItemCategory Load (0.4ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (22.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Michele Konopelski"], ["job_title", "Global Intranet Associate"], ["greetings", "Magni commodi voluptas temporibus et quo."], ["summary", "Dolorem aut consequatur est possimus quam. Natus incidunt neque ullam. Sit sit et aliquam sit enim ipsa ea."], ["key", "miss_michele_konopelski"], ["created_at", "2016-01-27 21:02:17.702887"], ["updated_at", "2016-01-27 21:02:17.702887"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolore"], ["key", "dolore"], ["created_at", "2016-01-27 21:02:17.705580"], ["updated_at", "2016-01-27 21:02:17.705580"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-27 21:02:17.707734"], ["updated_at", "2016-01-27 21:02:17.707734"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:02:17.710480"], ["updated_at", "2016-01-27 21:02:17.710480"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Silk Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:02:17.713745"], ["updated_at", "2016-01-27 21:02:17.713745"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Linen Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:02:17.716051"], ["updated_at", "2016-01-27 21:02:17.716051"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Paper Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:02:17.718159"], ["updated_at", "2016-01-27 21:02:17.718159"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Leonor Braun"], ["job_title", "Forward Tactics Designer"], ["greetings", "Quam dolor harum ipsam qui aut sint."], ["summary", "Cumque ipsa consequatur alias ipsam vitae qui ut. Nihil eius repellat natus dolores iste. Aut in quia eos nostrum. Et illo et est laborum sapiente dignissimos. Sint aut libero voluptas."], ["key", "mr_leonor_braun"], ["created_at", "2016-01-27 21:02:17.740319"], ["updated_at", "2016-01-27 21:02:17.740319"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 21:02:17.742443"], ["updated_at", "2016-01-27 21:02:17.742443"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "repellendus"], ["key", "repellendus"], ["created_at", "2016-01-27 21:02:17.744195"], ["updated_at", "2016-01-27 21:02:17.744195"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Rubber Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:02:17.746065"], ["updated_at", "2016-01-27 21:02:17.746065"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Paper Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:02:17.748556"], ["updated_at", "2016-01-27 21:02:17.748556"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:02:17.750523"], ["updated_at", "2016-01-27 21:02:17.750523"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Paper Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:02:17.752412"], ["updated_at", "2016-01-27 21:02:17.752412"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.9ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (12.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Yasmeen Senger"], ["job_title", "Regional Research Representative"], ["greetings", "Recusandae et velit placeat consectetur qui fugiat."], ["summary", "Voluptas ut eum praesentium dolor voluptatem consequatur cum. Qui et minima quod eos esse. Commodi exercitationem ullam."], ["key", "miss_yasmeen_senger"], ["created_at", "2016-01-27 21:02:17.770911"], ["updated_at", "2016-01-27 21:02:17.770911"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (11.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mac Lakin Sr."], ["job_title", "National Accountability Specialist"], ["greetings", "Omnis exercitationem quis reprehenderit sunt vel."], ["summary", "Aut at eum magni ipsum expedita. Sunt saepe mollitia dolor autem. Et aliquam earum ex quasi ea."], ["key", "mac_lakin_sr"], ["created_at", "2016-01-27 21:02:17.798463"], ["updated_at", "2016-01-27 21:02:17.798463"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.3ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Deon Stark"], ["job_title", "Forward Data Executive"], ["greetings", "Eligendi necessitatibus molestiae aut."], ["summary", "Eveniet nulla similique ut numquam ducimus et. Sit sed aut et reiciendis praesentium est. Natus aperiam vitae mollitia. Sed perspiciatis adipisci. Aut nulla porro nisi."], ["key", "deon_stark"], ["created_at", "2016-01-27 21:02:17.807161"], ["updated_at", "2016-01-27 21:02:17.807161"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsam"], ["key", "ipsam"], ["created_at", "2016-01-27 21:02:17.809226"], ["updated_at", "2016-01-27 21:02:17.809226"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "velit"], ["key", "velit"], ["created_at", "2016-01-27 21:02:17.810914"], ["updated_at", "2016-01-27 21:02:17.810914"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Rubber Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:02:17.813223"], ["updated_at", "2016-01-27 21:02:17.813223"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:02:17.815248"], ["updated_at", "2016-01-27 21:02:17.815248"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Aluminum Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:02:17.817325"], ["updated_at", "2016-01-27 21:02:17.817325"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Steel Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:02:17.819505"], ["updated_at", "2016-01-27 21:02:17.819505"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (6.0ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (20.4ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Adele Botsford"], ["job_title", "International Implementation Representative"], ["greetings", "Suscipit ut consectetur nemo nesciunt maiores."], ["summary", "Eius quo hic iusto incidunt quod sed. Et ex laboriosam magni quaerat enim doloribus quia. Nisi sapiente ipsam qui rerum unde sint."], ["key", "adele_botsford"], ["created_at", "2016-01-27 21:08:09.218828"], ["updated_at", "2016-01-27 21:08:09.218828"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:08:09.236865"], ["updated_at", "2016-01-27 21:08:09.236865"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jayce Heidenreich PhD"], ["job_title", "Investor Web Director"], ["greetings", "Aliquam velit fuga sit est aut id quisquam illum."], ["summary", "Ducimus illo soluta minus id. Dolore aut est doloribus. Voluptas sunt qui et adipisci."], ["key", "jayce_heidenreich_phd"], ["created_at", "2016-01-27 21:08:09.243051"], ["updated_at", "2016-01-27 21:08:09.243051"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:08:09.245430"], ["updated_at", "2016-01-27 21:08:09.245430"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Noemi Wolff"], ["job_title", "Chief Data Associate"], ["greetings", "Voluptatem nobis ipsa exercitationem eveniet illum."], ["summary", "Ea quo dolorem ex unde asperiores. Sed quia sunt. Qui id quis at et et delectus. Ex tempora et officiis deleniti ratione."], ["key", "noemi_wolff"], ["created_at", "2016-01-27 21:08:09.248393"], ["updated_at", "2016-01-27 21:08:09.248393"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:08:09.250306"], ["updated_at", "2016-01-27 21:08:09.250306"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jeffery Klocko Sr."], ["job_title", "Principal Data Specialist"], ["greetings", "Nihil non voluptatem soluta est dolor."], ["summary", "Minima repellat saepe fugit sunt. Iusto saepe dicta. Sunt qui tenetur eum tempora cumque aut quae. Omnis delectus perspiciatis voluptatem. Quis molestiae aut ab vel."], ["key", "jeffery_klocko_sr"], ["created_at", "2016-01-27 21:08:09.257441"], ["updated_at", "2016-01-27 21:08:09.257441"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:08:09.259648"], ["updated_at", "2016-01-27 21:08:09.259648"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Stan Farrell"], ["job_title", "Senior Security Officer"], ["greetings", "Quia dolorem qui exercitationem et libero temporibus."], ["summary", "Optio nobis repudiandae veritatis cupiditate ullam et odio. Excepturi rerum minima tempora eligendi cupiditate. Molestiae et nihil qui minus vel."], ["key", "stan_farrell"], ["created_at", "2016-01-27 21:08:09.263585"], ["updated_at", "2016-01-27 21:08:09.263585"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:08:09.265872"], ["updated_at", "2016-01-27 21:08:09.265872"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kari Dietrich"], ["job_title", "Senior Metrics Assistant"], ["greetings", "Eos dicta deserunt quo."], ["summary", "Et dolorem provident mollitia consequatur. Mollitia enim inventore fugiat aut voluptas. Quia tempore et sed ab rerum. Voluptate eius neque nulla deserunt qui."], ["key", "kari_dietrich"], ["created_at", "2016-01-27 21:08:09.269784"], ["updated_at", "2016-01-27 21:08:09.269784"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:08:09.272148"], ["updated_at", "2016-01-27 21:08:09.272148"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Eloy Aufderhar"], ["job_title", "Dynamic Operations Specialist"], ["greetings", "Ullam ratione qui dolore deserunt."], ["summary", "Odio quia et repudiandae voluptatum ducimus similique. Quia consequatur aut enim omnis qui eos. Commodi dignissimos nemo."], ["key", "eloy_aufderhar"], ["created_at", "2016-01-27 21:08:09.276652"], ["updated_at", "2016-01-27 21:08:09.276652"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 21:08:09.282020"], ["updated_at", "2016-01-27 21:08:09.282020"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 21:08:09.283880"], ["updated_at", "2016-01-27 21:08:09.283880"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "perspiciatis"], ["key", "perspiciatis"], ["created_at", "2016-01-27 21:08:09.289166"], ["updated_at", "2016-01-27 21:08:09.289166"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jamarcus Roob"], ["job_title", "District Web Liaison"], ["greetings", "Temporibus dolore velit aut veritatis eaque."], ["summary", "Autem quo dolores molestiae incidunt tenetur delectus. Eos incidunt suscipit voluptate deleniti et odit similique. Doloremque dolores laboriosam iste cum maiores corrupti."], ["key", "jamarcus_roob"], ["created_at", "2016-01-27 21:08:09.298886"], ["updated_at", "2016-01-27 21:08:09.298886"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quis"], ["key", "quis"], ["created_at", "2016-01-27 21:08:09.300764"], ["updated_at", "2016-01-27 21:08:09.300764"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "minima"], ["key", "minima"], ["created_at", "2016-01-27 21:08:09.302243"], ["updated_at", "2016-01-27 21:08:09.302243"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consequatur"], ["key", "consequatur"], ["created_at", "2016-01-27 21:08:09.303698"], ["updated_at", "2016-01-27 21:08:09.303698"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Else Torphy"], ["job_title", "Product Division Designer"], ["greetings", "Aliquam eius officia a."], ["summary", "Ut incidunt voluptas molestiae. Et et officia quibusdam hic cupiditate doloribus suscipit. In voluptatem qui optio quas ea modi aut."], ["key", "else_torphy"], ["created_at", "2016-01-27 21:08:09.307786"], ["updated_at", "2016-01-27 21:08:09.307786"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "incidunt"], ["key", "incidunt"], ["created_at", "2016-01-27 21:08:09.310098"], ["updated_at", "2016-01-27 21:08:09.310098"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 21:08:09.311806"], ["updated_at", "2016-01-27 21:08:09.311806"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "debitis"], ["key", "debitis"], ["created_at", "2016-01-27 21:08:09.313298"], ["updated_at", "2016-01-27 21:08:09.313298"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Leanne Rosenbaum V"], ["job_title", "Direct Factors Representative"], ["greetings", "Occaecati quos et sed dolorem quas maxime."], ["summary", "Eaque et fugit dicta eos id qui voluptas. Error doloremque est at ea. In corporis et impedit. Laboriosam illo et nihil natus qui temporibus. Vel ut tenetur aspernatur neque deserunt."], ["key", "leanne_rosenbaum_v"], ["created_at", "2016-01-27 21:08:09.319074"], ["updated_at", "2016-01-27 21:08:09.319074"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tenetur"], ["key", "tenetur"], ["created_at", "2016-01-27 21:08:09.322417"], ["updated_at", "2016-01-27 21:08:09.322417"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 21:08:09.324675"], ["updated_at", "2016-01-27 21:08:09.324675"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "id"], ["key", "id"], ["created_at", "2016-01-27 21:08:09.326759"], ["updated_at", "2016-01-27 21:08:09.326759"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Ludwig Koelpin"], ["job_title", "Future Functionality Coordinator"], ["greetings", "In sint quam exercitationem aut sit facere."], ["summary", "Voluptates et voluptatem at veniam nihil. Et quis explicabo quae beatae. Assumenda expedita velit id illo nihil. Rerum mollitia error totam dicta iste optio porro."], ["key", "mrs_ludwig_koelpin"], ["created_at", "2016-01-27 21:08:09.338871"], ["updated_at", "2016-01-27 21:08:09.338871"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Cotton Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:08:09.341567"], ["updated_at", "2016-01-27 21:08:09.341567"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Iron Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:08:09.343781"], ["updated_at", "2016-01-27 21:08:09.343781"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Copper Coat"], ["site_id", 1], ["created_at", "2016-01-27 21:08:09.345769"], ["updated_at", "2016-01-27 21:08:09.345769"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Silk Computer"], ["site_id", 1], ["created_at", "2016-01-27 21:08:09.347569"], ["updated_at", "2016-01-27 21:08:09.347569"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (11.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (27.2ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.3ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (241.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (322.7ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.7ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Francesca Von DVM"], ["job_title", "National Division Assistant"], ["greetings", "Et ea modi delectus sunt totam laudantium iste."], ["summary", "Voluptas facilis doloribus ut ut alias unde architecto. Ducimus omnis id sed perferendis incidunt mollitia quo. Cum molestias doloribus atque aut et. Ad labore repellendus id reprehenderit iste nobis. Nisi esse deserunt dolor qui dolor quia atque."], ["key", "francesca_von_dvm"], ["created_at", "2016-01-27 21:08:09.699174"], ["updated_at", "2016-01-27 21:08:09.699174"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Iron Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:08:09.704608"], ["updated_at", "2016-01-27 21:08:09.704608"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Leather Hat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:08:09.709503"], ["updated_at", "2016-01-27 21:08:09.709503"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Paper Shoes"], ["site_id", 1], ["created_at", "2016-01-27 21:08:09.714176"], ["updated_at", "2016-01-27 21:08:09.714176"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Bronze Bottle"], ["site_id", 1], ["created_at", "2016-01-27 21:08:09.718434"], ["updated_at", "2016-01-27 21:08:09.718434"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (13.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (23.6ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Vallie O'Kon"], ["job_title", "Lead Operations Designer"], ["greetings", "Qui nesciunt totam aliquam eveniet cumque."], ["summary", "Velit deserunt quia. In suscipit quod optio excepturi nihil eum. Et aliquam laboriosam facilis dolorem perferendis voluptates quasi. Non vel omnis et ratione sint. Molestiae dolorum nobis et."], ["key", "vallie_o_kon"], ["created_at", "2016-01-27 21:08:09.756084"], ["updated_at", "2016-01-27 21:08:09.756084"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fuga"], ["key", "fuga"], ["created_at", "2016-01-27 21:08:09.760852"], ["updated_at", "2016-01-27 21:08:09.760852"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "non"], ["key", "non"], ["created_at", "2016-01-27 21:08:09.766466"], ["updated_at", "2016-01-27 21:08:09.766466"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quidem"], ["key", "quidem"], ["created_at", "2016-01-27 21:08:09.772111"], ["updated_at", "2016-01-27 21:08:09.772111"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Marvin Bins"], ["job_title", "Regional Infrastructure Planner"], ["greetings", "Inventore sequi numquam et officia dolorem quia minus."], ["summary", "Aliquid consequatur est. Architecto rerum soluta iste minus sunt. Quos aut est optio."], ["key", "marvin_bins"], ["created_at", "2016-01-27 21:08:09.785177"], ["updated_at", "2016-01-27 21:08:09.785177"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 21:08:09.790538"], ["updated_at", "2016-01-27 21:08:09.790538"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-27 21:08:09.794596"], ["updated_at", "2016-01-27 21:08:09.794596"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "laboriosam"], ["key", "laboriosam"], ["created_at", "2016-01-27 21:08:09.797737"], ["updated_at", "2016-01-27 21:08:09.797737"]]  (1.4ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bridgette Bogisich"], ["job_title", "Internal Marketing Liaison"], ["greetings", "Recusandae omnis quisquam voluptatum corporis modi vitae."], ["summary", "Culpa placeat illum dolore. Occaecati ex cupiditate dignissimos incidunt qui ducimus. Eum ad dolorum id ea consectetur laboriosam."], ["key", "bridgette_bogisich"], ["created_at", "2016-01-27 21:08:09.810380"], ["updated_at", "2016-01-27 21:08:09.810380"]]  (0.6ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.2ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (18.6ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tad Lynch"], ["job_title", "National Response Assistant"], ["greetings", "Porro quo non itaque excepturi."], ["summary", "Quia eligendi quo quis. Facilis laudantium quia placeat omnis vel minima. Voluptatem id amet. Vitae fugit qui consequatur. Dolor occaecati ea animi non minima tempora numquam."], ["key", "tad_lynch"], ["created_at", "2016-01-27 21:08:09.859505"], ["updated_at", "2016-01-27 21:08:09.859505"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.9ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Stanford Kreiger"], ["job_title", "Central Assurance Analyst"], ["greetings", "Sed sint blanditiis officiis maiores."], ["summary", "Id placeat vel consequatur. Ut cupiditate ipsam. Consequuntur eos veniam et similique voluptas repellat. Voluptatibus ex consequatur magnam."], ["key", "miss_stanford_kreiger"], ["created_at", "2016-01-27 21:08:09.872968"], ["updated_at", "2016-01-27 21:08:09.872968"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sapiente"], ["key", "sapiente"], ["created_at", "2016-01-27 21:08:09.875714"], ["updated_at", "2016-01-27 21:08:09.875714"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "modi"], ["key", "modi"], ["created_at", "2016-01-27 21:08:09.878230"], ["updated_at", "2016-01-27 21:08:09.878230"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quo"], ["key", "quo"], ["created_at", "2016-01-27 21:08:09.880540"], ["updated_at", "2016-01-27 21:08:09.880540"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tiana Luettgen"], ["job_title", "Human Communications Analyst"], ["greetings", "Illo nulla quas libero repellat."], ["summary", "Eveniet sapiente non consequatur aut. Quae sit aut ipsa quod voluptatem qui. Id eos non. Quasi ea rerum."], ["key", "tiana_luettgen"], ["created_at", "2016-01-27 21:08:54.407866"], ["updated_at", "2016-01-27 21:08:54.407866"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:08:54.425864"], ["updated_at", "2016-01-27 21:08:54.425864"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Tanner Predovic"], ["job_title", "Regional Functionality Analyst"], ["greetings", "Illum consequatur quam excepturi consequuntur consequatur qui."], ["summary", "Expedita iusto molestiae maiores a nisi nemo. Aliquid non vero. Labore ut et consequatur qui libero ut et. Fugit recusandae quibusdam reprehenderit tenetur veritatis quos nam. Provident quo nesciunt quidem veritatis nobis."], ["key", "mrs_tanner_predovic"], ["created_at", "2016-01-27 21:08:54.432064"], ["updated_at", "2016-01-27 21:08:54.432064"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:08:54.434634"], ["updated_at", "2016-01-27 21:08:54.434634"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Fiona Leffler"], ["job_title", "Forward Marketing Architect"], ["greetings", "Fuga cumque sunt maiores dolore optio."], ["summary", "Fugiat atque alias. Expedita voluptatem est. Accusamus sunt accusantium autem. Doloribus perspiciatis est ipsam ad minima."], ["key", "fiona_leffler"], ["created_at", "2016-01-27 21:08:54.437583"], ["updated_at", "2016-01-27 21:08:54.437583"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:08:54.439658"], ["updated_at", "2016-01-27 21:08:54.439658"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Francesco Tremblay"], ["job_title", "Senior Metrics Officer"], ["greetings", "Quibusdam omnis molestias velit dolor aperiam consequatur rem explicabo."], ["summary", "Sed repellat alias aut qui. Nobis dolores qui voluptas odio. Qui quia quas iusto."], ["key", "francesco_tremblay"], ["created_at", "2016-01-27 21:08:54.446291"], ["updated_at", "2016-01-27 21:08:54.446291"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:08:54.448944"], ["updated_at", "2016-01-27 21:08:54.448944"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Devyn Lueilwitz"], ["job_title", "District Metrics Producer"], ["greetings", "Omnis distinctio nam optio."], ["summary", "Error earum culpa dignissimos nulla molestiae ut. Aut est sit quo porro. Provident voluptates eum. At rem voluptatum enim impedit officia qui ipsam. Quasi officiis et."], ["key", "devyn_lueilwitz"], ["created_at", "2016-01-27 21:08:54.453053"], ["updated_at", "2016-01-27 21:08:54.453053"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:08:54.455450"], ["updated_at", "2016-01-27 21:08:54.455450"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Laverna Raynor"], ["job_title", "Legacy Mobility Strategist"], ["greetings", "Aspernatur odit exercitationem iure quia ut quidem ea eum."], ["summary", "Et sit autem consequatur sequi quae non quisquam. Nesciunt cupiditate molestias quasi dolor eaque. Aut rem quasi sit soluta voluptatibus ea. Ad maxime ea molestiae tenetur officiis temporibus."], ["key", "laverna_raynor"], ["created_at", "2016-01-27 21:08:54.459607"], ["updated_at", "2016-01-27 21:08:54.459607"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:08:54.461730"], ["updated_at", "2016-01-27 21:08:54.461730"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Janessa Gusikowski"], ["job_title", "Senior Integration Agent"], ["greetings", "Nobis fuga architecto cupiditate suscipit temporibus."], ["summary", "Quos et eos doloremque commodi necessitatibus odio. Pariatur et quasi error optio. Nesciunt voluptates aut est voluptate amet. Maxime et minima animi repudiandae. Deserunt ullam ad quidem voluptas voluptatum."], ["key", "janessa_gusikowski"], ["created_at", "2016-01-27 21:08:54.466824"], ["updated_at", "2016-01-27 21:08:54.466824"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "laboriosam"], ["key", "laboriosam"], ["created_at", "2016-01-27 21:08:54.472132"], ["updated_at", "2016-01-27 21:08:54.472132"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "illum"], ["key", "illum"], ["created_at", "2016-01-27 21:08:54.474065"], ["updated_at", "2016-01-27 21:08:54.474065"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolorem"], ["key", "dolorem"], ["created_at", "2016-01-27 21:08:54.477957"], ["updated_at", "2016-01-27 21:08:54.477957"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Cotton Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:08:54.502074"], ["updated_at", "2016-01-27 21:08:54.502074"]] SQL (0.2ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Cotton Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:08:54.506168"], ["updated_at", "2016-01-27 21:08:54.506168"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Linen Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:08:54.508333"], ["updated_at", "2016-01-27 21:08:54.508333"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Cotton Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:08:54.510329"], ["updated_at", "2016-01-27 21:08:54.510329"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Violette Purdy"], ["job_title", "Direct Division Administrator"], ["greetings", "Qui ab impedit voluptate ad in doloremque dolores qui."], ["summary", "Repellendus eum necessitatibus velit voluptates debitis. Quasi quisquam architecto molestiae. Labore possimus officia. Repudiandae aut est."], ["key", "violette_purdy"], ["created_at", "2016-01-27 21:08:54.538825"], ["updated_at", "2016-01-27 21:08:54.538825"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sint"], ["key", "sint"], ["created_at", "2016-01-27 21:08:54.540874"], ["updated_at", "2016-01-27 21:08:54.540874"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 21:08:54.542473"], ["updated_at", "2016-01-27 21:08:54.542473"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "laboriosam"], ["key", "laboriosam"], ["created_at", "2016-01-27 21:08:54.543840"], ["updated_at", "2016-01-27 21:08:54.543840"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Marble Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:08:54.547315"], ["updated_at", "2016-01-27 21:08:54.547315"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Copper Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:08:54.551137"], ["updated_at", "2016-01-27 21:08:54.551137"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Granite Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:08:54.553029"], ["updated_at", "2016-01-27 21:08:54.553029"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wool Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:08:54.554829"], ["updated_at", "2016-01-27 21:08:54.554829"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Buck Kling"], ["job_title", "Global Metrics Producer"], ["greetings", "Error dolorem dolore sequi eum ut iusto."], ["summary", "Mollitia veritatis dolorem esse. Porro itaque officia qui nihil illo. Velit ea est aut quasi doloribus. Eum quia autem dignissimos."], ["key", "buck_kling"], ["created_at", "2016-01-27 21:08:54.565140"], ["updated_at", "2016-01-27 21:08:54.565140"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "laudantium"], ["key", "laudantium"], ["created_at", "2016-01-27 21:08:54.567297"], ["updated_at", "2016-01-27 21:08:54.567297"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "accusamus"], ["key", "accusamus"], ["created_at", "2016-01-27 21:08:54.569147"], ["updated_at", "2016-01-27 21:08:54.569147"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "omnis"], ["key", "omnis"], ["created_at", "2016-01-27 21:08:54.573694"], ["updated_at", "2016-01-27 21:08:54.573694"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Linen Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:08:54.579377"], ["updated_at", "2016-01-27 21:08:54.579377"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Steel Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:08:54.584965"], ["updated_at", "2016-01-27 21:08:54.584965"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Marble Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:08:54.587184"], ["updated_at", "2016-01-27 21:08:54.587184"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Silk Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:08:54.589279"], ["updated_at", "2016-01-27 21:08:54.589279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Chance Krajcik DVM"], ["job_title", "Senior Security Architect"], ["greetings", "Cum blanditiis doloremque enim consectetur."], ["summary", "Quia distinctio aut. Nisi sapiente accusamus consequatur et. Voluptatem rerum aperiam aut at et occaecati."], ["key", "chance_krajcik_dvm"], ["created_at", "2016-01-27 21:08:54.593553"], ["updated_at", "2016-01-27 21:08:54.593553"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "doloremque"], ["key", "doloremque"], ["created_at", "2016-01-27 21:08:54.595971"], ["updated_at", "2016-01-27 21:08:54.595971"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolor"], ["key", "dolor"], ["created_at", "2016-01-27 21:08:54.597757"], ["updated_at", "2016-01-27 21:08:54.597757"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "atque"], ["key", "atque"], ["created_at", "2016-01-27 21:08:54.599898"], ["updated_at", "2016-01-27 21:08:54.599898"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Bronze Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:08:54.603337"], ["updated_at", "2016-01-27 21:08:54.603337"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Copper Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:08:54.606458"], ["updated_at", "2016-01-27 21:08:54.606458"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Cotton Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:08:54.608412"], ["updated_at", "2016-01-27 21:08:54.608412"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Plastic Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:08:54.610816"], ["updated_at", "2016-01-27 21:08:54.610816"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Flossie Mertz DDS"], ["job_title", "Global Mobility Facilitator"], ["greetings", "Voluptas inventore similique ad pariatur illo quis fugit necessitatibus."], ["summary", "Eos eveniet libero qui unde. Dicta ipsum quibusdam aspernatur. Possimus est quis hic sunt tempora qui."], ["key", "flossie_mertz_dds"], ["created_at", "2016-01-27 21:08:54.620046"], ["updated_at", "2016-01-27 21:08:54.620046"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Aluminum Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:08:54.623469"], ["updated_at", "2016-01-27 21:08:54.623469"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Wool Shirt"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:08:54.625809"], ["updated_at", "2016-01-27 21:08:54.625809"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Bronze Gloves"], ["site_id", 1], ["created_at", "2016-01-27 21:08:54.628520"], ["updated_at", "2016-01-27 21:08:54.628520"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Granite Car"], ["site_id", 1], ["created_at", "2016-01-27 21:08:54.630647"], ["updated_at", "2016-01-27 21:08:54.630647"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (228.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (294.4ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jordon Watsica"], ["job_title", "Future Web Engineer"], ["greetings", "Laborum vel animi tempore atque omnis."], ["summary", "Voluptatem eligendi amet quasi omnis debitis. Animi provident voluptatem voluptatem labore dolore quibusdam non. Dolorum dolorem qui soluta ut mollitia. Vero officiis amet repudiandae aut."], ["key", "jordon_watsica"], ["created_at", "2016-01-27 21:08:54.951075"], ["updated_at", "2016-01-27 21:08:54.951075"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Bronze Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:08:54.956407"], ["updated_at", "2016-01-27 21:08:54.956407"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Copper Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:08:54.960970"], ["updated_at", "2016-01-27 21:08:54.960970"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Linen Lamp"], ["site_id", 1], ["created_at", "2016-01-27 21:08:54.964923"], ["updated_at", "2016-01-27 21:08:54.964923"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Cotton Bench"], ["site_id", 1], ["created_at", "2016-01-27 21:08:54.969141"], ["updated_at", "2016-01-27 21:08:54.969141"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.2ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kasey Abbott"], ["job_title", "Human Program Producer"], ["greetings", "Laboriosam nobis eligendi eum omnis aliquid voluptatem nesciunt magni."], ["summary", "Non dolor est voluptatem asperiores. Nostrum officia delectus at consequuntur. Iure dolorem quae officiis tempora et tenetur. Blanditiis nesciunt quaerat molestias iure ut praesentium at. Quasi perferendis eos voluptas."], ["key", "kasey_abbott"], ["created_at", "2016-01-27 21:08:55.002922"], ["updated_at", "2016-01-27 21:08:55.002922"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "autem"], ["key", "autem"], ["created_at", "2016-01-27 21:08:55.007128"], ["updated_at", "2016-01-27 21:08:55.007128"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "harum"], ["key", "harum"], ["created_at", "2016-01-27 21:08:55.009024"], ["updated_at", "2016-01-27 21:08:55.009024"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "placeat"], ["key", "placeat"], ["created_at", "2016-01-27 21:08:55.010662"], ["updated_at", "2016-01-27 21:08:55.010662"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Leather Computer"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:08:55.013867"], ["updated_at", "2016-01-27 21:08:55.013867"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Wooden Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:08:55.017923"], ["updated_at", "2016-01-27 21:08:55.017923"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Copper Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:08:55.019944"], ["updated_at", "2016-01-27 21:08:55.019944"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Copper Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:08:55.021854"], ["updated_at", "2016-01-27 21:08:55.021854"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Maude Grimes"], ["job_title", "Product Tactics Analyst"], ["greetings", "Placeat ipsum natus repellat accusamus eaque est fugit officiis."], ["summary", "Harum magnam repellat et expedita et dolores. Mollitia quia ut incidunt. Nesciunt exercitationem voluptatem. Sit voluptatem alias doloremque tempore pariatur dignissimos."], ["key", "maude_grimes"], ["created_at", "2016-01-27 21:08:55.042714"], ["updated_at", "2016-01-27 21:08:55.042714"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ab"], ["key", "ab"], ["created_at", "2016-01-27 21:08:55.044754"], ["updated_at", "2016-01-27 21:08:55.044754"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aspernatur"], ["key", "aspernatur"], ["created_at", "2016-01-27 21:08:55.046350"], ["updated_at", "2016-01-27 21:08:55.046350"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "facilis"], ["key", "facilis"], ["created_at", "2016-01-27 21:08:55.048191"], ["updated_at", "2016-01-27 21:08:55.048191"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Silk Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:08:55.053345"], ["updated_at", "2016-01-27 21:08:55.053345"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Leather Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:08:55.056470"], ["updated_at", "2016-01-27 21:08:55.056470"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Paper Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:08:55.058499"], ["updated_at", "2016-01-27 21:08:55.058499"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Silk Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:08:55.060468"], ["updated_at", "2016-01-27 21:08:55.060468"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (11.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Justus Pouros"], ["job_title", "Corporate Communications Administrator"], ["greetings", "Perspiciatis natus voluptatum vel ea aperiam id."], ["summary", "Impedit est laboriosam hic quis. Voluptas sint molestiae optio sit illum dolor. Omnis nostrum nisi rerum fugit porro veritatis est. Molestiae ducimus quia harum maxime enim. Nesciunt qui veniam reiciendis nostrum consectetur."], ["key", "justus_pouros"], ["created_at", "2016-01-27 21:08:55.079138"], ["updated_at", "2016-01-27 21:08:55.079138"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (10.7ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Zachery Lowe"], ["job_title", "Dynamic Program Orchestrator"], ["greetings", "Qui ducimus qui velit voluptatem aut."], ["summary", "In et in. Cupiditate aspernatur culpa. Est quos placeat esse et omnis nobis. Ut qui quia eos. Alias voluptate provident rerum perspiciatis."], ["key", "zachery_lowe"], ["created_at", "2016-01-27 21:08:55.107727"], ["updated_at", "2016-01-27 21:08:55.107727"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.0ms)  (0.4ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lyric Lowe Sr."], ["job_title", "International Identity Representative"], ["greetings", "Saepe autem aperiam dignissimos aliquid harum quia."], ["summary", "Natus ad aperiam accusantium veniam totam molestias ut. Est omnis enim velit fugiat. Eum ab non voluptatem."], ["key", "lyric_lowe_sr"], ["created_at", "2016-01-27 21:08:55.118799"], ["updated_at", "2016-01-27 21:08:55.118799"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "maiores"], ["key", "maiores"], ["created_at", "2016-01-27 21:08:55.120867"], ["updated_at", "2016-01-27 21:08:55.120867"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "placeat"], ["key", "placeat"], ["created_at", "2016-01-27 21:08:55.122524"], ["updated_at", "2016-01-27 21:08:55.122524"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 21:08:55.124295"], ["updated_at", "2016-01-27 21:08:55.124295"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Plastic Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:08:55.127373"], ["updated_at", "2016-01-27 21:08:55.127373"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Paper Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:08:55.130239"], ["updated_at", "2016-01-27 21:08:55.130239"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Steel Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:08:55.133002"], ["updated_at", "2016-01-27 21:08:55.133002"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Marble Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:08:55.135324"], ["updated_at", "2016-01-27 21:08:55.135324"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (3.8ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.4ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lue Carroll II"], ["job_title", "District Marketing Analyst"], ["greetings", "Cum placeat sit reiciendis qui provident error necessitatibus nobis."], ["summary", "Sapiente qui hic dignissimos nesciunt magnam vel. Dolores ea voluptate soluta tenetur quod corrupti. Facilis sed et illum voluptas. Iure in eum ab. Aliquam pariatur fugiat recusandae velit nobis veritatis."], ["key", "lue_carroll_ii"], ["created_at", "2016-01-27 21:09:14.227639"], ["updated_at", "2016-01-27 21:09:14.227639"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:09:14.244420"], ["updated_at", "2016-01-27 21:09:14.244420"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Candace Volkman"], ["job_title", "Legacy Operations Producer"], ["greetings", "Possimus sunt et totam fuga ut nemo."], ["summary", "Minus soluta voluptatem modi neque qui eveniet maiores. Vitae voluptatum animi ipsam voluptates consequatur. Consequuntur quibusdam eum dolor qui aut aliquid perferendis. Officia et enim id atque."], ["key", "candace_volkman"], ["created_at", "2016-01-27 21:09:14.250160"], ["updated_at", "2016-01-27 21:09:14.250160"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:09:14.252561"], ["updated_at", "2016-01-27 21:09:14.252561"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tiffany Luettgen"], ["job_title", "Senior Interactions Technician"], ["greetings", "Est et eos excepturi."], ["summary", "Modi soluta aut nisi nam doloremque id. Minima vero pariatur soluta id nisi. Assumenda modi voluptatem nobis consequuntur dolorum recusandae hic. Aut veniam est excepturi iste."], ["key", "tiffany_luettgen"], ["created_at", "2016-01-27 21:09:14.255600"], ["updated_at", "2016-01-27 21:09:14.255600"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:09:14.257771"], ["updated_at", "2016-01-27 21:09:14.257771"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Melyna Gutmann IV"], ["job_title", "Direct Branding Facilitator"], ["greetings", "Veniam praesentium maxime provident libero corporis aliquid asperiores aliquam."], ["summary", "Quia occaecati expedita. Velit labore culpa ducimus. Perferendis sapiente rerum. Quis cum alias soluta et voluptas natus. Consequuntur ut et."], ["key", "melyna_gutmann_iv"], ["created_at", "2016-01-27 21:09:14.265106"], ["updated_at", "2016-01-27 21:09:14.265106"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:09:14.267124"], ["updated_at", "2016-01-27 21:09:14.267124"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Xavier Kunde"], ["job_title", "Forward Creative Architect"], ["greetings", "Ea facere aut quos molestias id ut."], ["summary", "Distinctio quis labore rerum soluta. Eos voluptas non optio mollitia molestiae. Modi commodi ducimus suscipit."], ["key", "xavier_kunde"], ["created_at", "2016-01-27 21:09:14.271456"], ["updated_at", "2016-01-27 21:09:14.271456"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:09:14.274039"], ["updated_at", "2016-01-27 21:09:14.274039"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lindsey Harvey"], ["job_title", "Dynamic Mobility Orchestrator"], ["greetings", "Dicta nostrum voluptate debitis tempora."], ["summary", "Velit praesentium voluptatem non non enim dolorem. Perspiciatis ut sit repellat qui nulla sed. Nostrum nisi est repellat nemo repellendus. Tempora facere dolores."], ["key", "lindsey_harvey"], ["created_at", "2016-01-27 21:09:14.278442"], ["updated_at", "2016-01-27 21:09:14.278442"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:09:14.280682"], ["updated_at", "2016-01-27 21:09:14.280682"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jesse Lakin"], ["job_title", "Principal Metrics Director"], ["greetings", "Autem et sequi voluptatem eos non quia eligendi."], ["summary", "Voluptates id molestiae non sed tempora cum. Ut consequuntur esse qui dicta. Dolorum vitae assumenda eum explicabo. Quam nesciunt et saepe nemo."], ["key", "jesse_lakin"], ["created_at", "2016-01-27 21:09:14.286391"], ["updated_at", "2016-01-27 21:09:14.286391"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "distinctio"], ["key", "distinctio"], ["created_at", "2016-01-27 21:09:14.291855"], ["updated_at", "2016-01-27 21:09:14.291855"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nulla"], ["key", "nulla"], ["created_at", "2016-01-27 21:09:14.293823"], ["updated_at", "2016-01-27 21:09:14.293823"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-27 21:09:14.298161"], ["updated_at", "2016-01-27 21:09:14.298161"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wool Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:09:14.321628"], ["updated_at", "2016-01-27 21:09:14.321628"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Aluminum Plate"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:09:14.325314"], ["updated_at", "2016-01-27 21:09:14.325314"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Paper Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:09:14.327547"], ["updated_at", "2016-01-27 21:09:14.327547"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Granite Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:09:14.329611"], ["updated_at", "2016-01-27 21:09:14.329611"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Paolo Jenkins"], ["job_title", "Investor Data Specialist"], ["greetings", "At soluta est qui maiores."], ["summary", "Enim illo nisi. Ut rerum aut voluptate ex perferendis fugiat. Quia necessitatibus maiores minima dolorem."], ["key", "paolo_jenkins"], ["created_at", "2016-01-27 21:09:14.359131"], ["updated_at", "2016-01-27 21:09:14.359131"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "magni"], ["key", "magni"], ["created_at", "2016-01-27 21:09:14.361645"], ["updated_at", "2016-01-27 21:09:14.361645"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "autem"], ["key", "autem"], ["created_at", "2016-01-27 21:09:14.363976"], ["updated_at", "2016-01-27 21:09:14.363976"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aspernatur"], ["key", "aspernatur"], ["created_at", "2016-01-27 21:09:14.366355"], ["updated_at", "2016-01-27 21:09:14.366355"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:09:14.370462"], ["updated_at", "2016-01-27 21:09:14.370462"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wool Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:09:14.374074"], ["updated_at", "2016-01-27 21:09:14.374074"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Rubber Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:09:14.376025"], ["updated_at", "2016-01-27 21:09:14.376025"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Linen Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:09:14.377866"], ["updated_at", "2016-01-27 21:09:14.377866"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Marlin Cassin"], ["job_title", "International Division Architect"], ["greetings", "Quod autem rem accusamus omnis et."], ["summary", "Tenetur qui porro quis. Aut quo culpa. Vero et hic aut et repellendus quos veritatis."], ["key", "marlin_cassin"], ["created_at", "2016-01-27 21:09:14.388809"], ["updated_at", "2016-01-27 21:09:14.388809"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "esse"], ["key", "esse"], ["created_at", "2016-01-27 21:09:14.391612"], ["updated_at", "2016-01-27 21:09:14.391612"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptates"], ["key", "voluptates"], ["created_at", "2016-01-27 21:09:14.394088"], ["updated_at", "2016-01-27 21:09:14.394088"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dignissimos"], ["key", "dignissimos"], ["created_at", "2016-01-27 21:09:14.395803"], ["updated_at", "2016-01-27 21:09:14.395803"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Silk Car"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:09:14.401214"], ["updated_at", "2016-01-27 21:09:14.401214"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Leather Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:09:14.405337"], ["updated_at", "2016-01-27 21:09:14.405337"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Paper Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:09:14.407691"], ["updated_at", "2016-01-27 21:09:14.407691"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:09:14.409776"], ["updated_at", "2016-01-27 21:09:14.409776"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Koby Weber"], ["job_title", "Principal Functionality Technician"], ["greetings", "Explicabo nihil provident nobis aut et eum."], ["summary", "Blanditiis ut enim. Nulla et rerum. Nemo tempora velit veniam quidem. Doloremque minima nostrum. Omnis dolor expedita porro."], ["key", "koby_weber"], ["created_at", "2016-01-27 21:09:14.414621"], ["updated_at", "2016-01-27 21:09:14.414621"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sunt"], ["key", "sunt"], ["created_at", "2016-01-27 21:09:14.416766"], ["updated_at", "2016-01-27 21:09:14.416766"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-27 21:09:14.418512"], ["updated_at", "2016-01-27 21:09:14.418512"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "veritatis"], ["key", "veritatis"], ["created_at", "2016-01-27 21:09:14.419979"], ["updated_at", "2016-01-27 21:09:14.419979"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Cotton Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:09:14.423460"], ["updated_at", "2016-01-27 21:09:14.423460"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Linen Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:09:14.427170"], ["updated_at", "2016-01-27 21:09:14.427170"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Plastic Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:09:14.429232"], ["updated_at", "2016-01-27 21:09:14.429232"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wool Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:09:14.431128"], ["updated_at", "2016-01-27 21:09:14.431128"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Norris Toy"], ["job_title", "Dynamic Solutions Developer"], ["greetings", "At enim ea eum et officia voluptatem ipsa sit."], ["summary", "Neque magni aut voluptatem nulla voluptas enim qui. Excepturi nulla alias. Cum corrupti illo sed quaerat facere laborum."], ["key", "dr_norris_toy"], ["created_at", "2016-01-27 21:09:14.477483"], ["updated_at", "2016-01-27 21:09:14.477483"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Iron Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:09:14.480334"], ["updated_at", "2016-01-27 21:09:14.480334"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Rubber Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:09:14.485442"], ["updated_at", "2016-01-27 21:09:14.485442"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Linen Table"], ["site_id", 1], ["created_at", "2016-01-27 21:09:14.500346"], ["updated_at", "2016-01-27 21:09:14.500346"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Aluminum Chair"], ["site_id", 1], ["created_at", "2016-01-27 21:09:14.502022"], ["updated_at", "2016-01-27 21:09:14.502022"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (226.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (297.7ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Damon Schowalter"], ["job_title", "Central Markets Associate"], ["greetings", "Minima deleniti accusantium sunt est sapiente quo."], ["summary", "Aut voluptatibus labore necessitatibus reiciendis non ipsa. Asperiores ipsa voluptas officia. Eos veniam rerum quam laboriosam illum. Nemo maxime illum aut deleniti perferendis rerum. Et magnam repellat perspiciatis."], ["key", "damon_schowalter"], ["created_at", "2016-01-27 21:09:14.827059"], ["updated_at", "2016-01-27 21:09:14.827059"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:09:14.832105"], ["updated_at", "2016-01-27 21:09:14.832105"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Leather Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:09:14.836573"], ["updated_at", "2016-01-27 21:09:14.836573"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Bronze Bottle"], ["site_id", 1], ["created_at", "2016-01-27 21:09:14.840861"], ["updated_at", "2016-01-27 21:09:14.840861"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Granite Knife"], ["site_id", 1], ["created_at", "2016-01-27 21:09:14.845217"], ["updated_at", "2016-01-27 21:09:14.845217"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Osvaldo Toy"], ["job_title", "Senior Integration Strategist"], ["greetings", "Et numquam ut quo eos."], ["summary", "Sint dolore omnis quam nulla dolor. Molestiae veniam aliquam quia architecto beatae. Explicabo est earum dolorum cum. Sunt sit velit. Sed facilis velit qui minima aut placeat adipisci."], ["key", "osvaldo_toy"], ["created_at", "2016-01-27 21:09:14.879425"], ["updated_at", "2016-01-27 21:09:14.879425"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sed"], ["key", "sed"], ["created_at", "2016-01-27 21:09:14.881587"], ["updated_at", "2016-01-27 21:09:14.881587"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aliquam"], ["key", "aliquam"], ["created_at", "2016-01-27 21:09:14.883513"], ["updated_at", "2016-01-27 21:09:14.883513"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsa"], ["key", "ipsa"], ["created_at", "2016-01-27 21:09:14.885030"], ["updated_at", "2016-01-27 21:09:14.885030"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Marble Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:09:14.888093"], ["updated_at", "2016-01-27 21:09:14.888093"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Cotton Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:09:14.891729"], ["updated_at", "2016-01-27 21:09:14.891729"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Concrete Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:09:14.893744"], ["updated_at", "2016-01-27 21:09:14.893744"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Silk Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:09:14.895875"], ["updated_at", "2016-01-27 21:09:14.895875"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (15.8ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kirk Schroeder PhD"], ["job_title", "Customer Markets Agent"], ["greetings", "Doloremque enim quo optio in dolore fugiat aut adipisci."], ["summary", "In repellendus veniam esse qui enim. Velit aliquid sed est occaecati voluptatum nam voluptatem. Autem asperiores est error et dolore architecto eius. Placeat sed fuga illo asperiores ut culpa. Dicta fuga iste quidem."], ["key", "kirk_schroeder_phd"], ["created_at", "2016-01-27 21:09:14.920207"], ["updated_at", "2016-01-27 21:09:14.920207"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cumque"], ["key", "cumque"], ["created_at", "2016-01-27 21:09:14.922547"], ["updated_at", "2016-01-27 21:09:14.922547"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quasi"], ["key", "quasi"], ["created_at", "2016-01-27 21:09:14.924537"], ["updated_at", "2016-01-27 21:09:14.924537"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "delectus"], ["key", "delectus"], ["created_at", "2016-01-27 21:09:14.926853"], ["updated_at", "2016-01-27 21:09:14.926853"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Plastic Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:09:14.930354"], ["updated_at", "2016-01-27 21:09:14.930354"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Aluminum Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:09:14.933850"], ["updated_at", "2016-01-27 21:09:14.933850"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Linen Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:09:14.935923"], ["updated_at", "2016-01-27 21:09:14.935923"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wool Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:09:14.938279"], ["updated_at", "2016-01-27 21:09:14.938279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.3ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Hillard Morar"], ["job_title", "Chief Solutions Orchestrator"], ["greetings", "Est porro atque nostrum vel earum."], ["summary", "Beatae voluptatem non sit eos quia. Occaecati nobis autem accusantium eum. Quis quia animi omnis ex amet ipsa nesciunt. Est eos quibusdam voluptatem animi."], ["key", "hillard_morar"], ["created_at", "2016-01-27 21:09:14.959972"], ["updated_at", "2016-01-27 21:09:14.959972"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (10.8ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jaeden Mraz"], ["job_title", "Lead Configuration Facilitator"], ["greetings", "Et aut consequatur porro unde."], ["summary", "Unde sapiente voluptatem minima facere distinctio sit. Ad tenetur odit autem omnis. Architecto quaerat in eum aliquid recusandae voluptates nam. Laborum enim perferendis."], ["key", "jaeden_mraz"], ["created_at", "2016-01-27 21:09:14.988295"], ["updated_at", "2016-01-27 21:09:14.988295"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.3ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Loren Wunsch DVM"], ["job_title", "Regional Division Strategist"], ["greetings", "Non iste dicta rerum distinctio."], ["summary", "Ullam itaque sapiente nobis voluptas. Corrupti est ab numquam voluptatum perspiciatis. Animi corrupti magni mollitia."], ["key", "loren_wunsch_dvm"], ["created_at", "2016-01-27 21:09:14.998348"], ["updated_at", "2016-01-27 21:09:14.998348"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dicta"], ["key", "dicta"], ["created_at", "2016-01-27 21:09:15.001998"], ["updated_at", "2016-01-27 21:09:15.001998"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolorem"], ["key", "dolorem"], ["created_at", "2016-01-27 21:09:15.004095"], ["updated_at", "2016-01-27 21:09:15.004095"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ex"], ["key", "ex"], ["created_at", "2016-01-27 21:09:15.005675"], ["updated_at", "2016-01-27 21:09:15.005675"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Leather Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:09:15.009158"], ["updated_at", "2016-01-27 21:09:15.009158"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Cotton Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:09:15.012996"], ["updated_at", "2016-01-27 21:09:15.012996"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Leather Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:09:15.015449"], ["updated_at", "2016-01-27 21:09:15.015449"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Iron Car"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:09:15.018022"], ["updated_at", "2016-01-27 21:09:15.018022"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.4ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (6.1ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (19.5ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Caleigh Bahringer"], ["job_title", "Principal Operations Specialist"], ["greetings", "Natus sunt vitae modi ut perferendis aut."], ["summary", "Consequatur beatae eveniet. Veniam et quod. Sapiente a veniam laborum ducimus maiores accusamus. Tenetur quia sint ratione numquam architecto."], ["key", "caleigh_bahringer"], ["created_at", "2016-01-27 21:10:18.377154"], ["updated_at", "2016-01-27 21:10:18.377154"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:10:18.396849"], ["updated_at", "2016-01-27 21:10:18.396849"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Marcelle Weissnat"], ["job_title", "Dynamic Infrastructure Planner"], ["greetings", "A nam accusamus mollitia placeat."], ["summary", "Numquam alias eaque magni harum enim quos voluptatem. Ipsum est tempore iste architecto. Sed odio est commodi. Ut modi nesciunt similique tenetur ad sapiente quod. Rem optio dolor iure maxime assumenda."], ["key", "marcelle_weissnat"], ["created_at", "2016-01-27 21:10:18.403136"], ["updated_at", "2016-01-27 21:10:18.403136"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:10:18.405351"], ["updated_at", "2016-01-27 21:10:18.405351"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dorothea Kiehn"], ["job_title", "Dynamic Optimization Architect"], ["greetings", "Velit omnis aspernatur et ut voluptatibus eius."], ["summary", "Sed possimus aut. Necessitatibus sapiente quo id similique placeat eos. Eius doloremque recusandae nobis eos harum."], ["key", "dorothea_kiehn"], ["created_at", "2016-01-27 21:10:18.407993"], ["updated_at", "2016-01-27 21:10:18.407993"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:10:18.409937"], ["updated_at", "2016-01-27 21:10:18.409937"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aubree Erdman DDS"], ["job_title", "Lead Data Coordinator"], ["greetings", "Voluptatem voluptas accusamus sit."], ["summary", "Consectetur dolorem ad quos. Est ducimus ea suscipit ullam. Labore sunt veniam eius necessitatibus quaerat."], ["key", "aubree_erdman_dds"], ["created_at", "2016-01-27 21:10:18.416687"], ["updated_at", "2016-01-27 21:10:18.416687"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:10:18.418638"], ["updated_at", "2016-01-27 21:10:18.418638"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gregoria Fritsch"], ["job_title", "Legacy Security Agent"], ["greetings", "Velit autem numquam sed sapiente eos aut inventore."], ["summary", "Dolore voluptatem ut est vero animi ut omnis. Itaque possimus ab culpa quaerat ipsum. Amet occaecati odio rerum quam aperiam doloremque. Eaque commodi adipisci ut non nobis sit. Quaerat non ullam dolorum ex."], ["key", "gregoria_fritsch"], ["created_at", "2016-01-27 21:10:18.422982"], ["updated_at", "2016-01-27 21:10:18.422982"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:10:18.424983"], ["updated_at", "2016-01-27 21:10:18.424983"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ralph Gislason"], ["job_title", "Direct Quality Liaison"], ["greetings", "In perspiciatis aperiam hic quidem nemo et sit aspernatur."], ["summary", "Aliquam maiores accusamus consectetur ullam voluptas et. Aliquam sunt explicabo magnam sit. Magni enim eius natus."], ["key", "ralph_gislason"], ["created_at", "2016-01-27 21:10:18.429220"], ["updated_at", "2016-01-27 21:10:18.429220"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:10:18.431251"], ["updated_at", "2016-01-27 21:10:18.431251"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Travon Watsica"], ["job_title", "Principal Intranet Associate"], ["greetings", "Unde ducimus ut possimus rerum earum officia pariatur."], ["summary", "Sunt et labore magnam quidem perspiciatis qui. Illo labore quae quod optio velit esse. Vero sit perferendis eos dolor. Veniam est numquam quis. Dolores ratione minus quis ipsum nisi magni."], ["key", "travon_watsica"], ["created_at", "2016-01-27 21:10:18.437326"], ["updated_at", "2016-01-27 21:10:18.437326"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "repudiandae"], ["key", "repudiandae"], ["created_at", "2016-01-27 21:10:18.442569"], ["updated_at", "2016-01-27 21:10:18.442569"]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nemo"], ["key", "nemo"], ["created_at", "2016-01-27 21:10:18.446553"], ["updated_at", "2016-01-27 21:10:18.446553"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eum"], ["key", "eum"], ["created_at", "2016-01-27 21:10:18.451821"], ["updated_at", "2016-01-27 21:10:18.451821"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Plastic Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:10:18.473865"], ["updated_at", "2016-01-27 21:10:18.473865"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:10:18.477703"], ["updated_at", "2016-01-27 21:10:18.477703"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wooden Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:10:18.479843"], ["updated_at", "2016-01-27 21:10:18.479843"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:10:18.481957"], ["updated_at", "2016-01-27 21:10:18.481957"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Griffin D'Amore"], ["job_title", "Global Response Director"], ["greetings", "Atque minus consequuntur eos possimus voluptas omnis."], ["summary", "Ea omnis ducimus laborum minus tempora. Architecto corrupti dolor dolores voluptatibus aut rerum molestiae. Vitae odio rerum distinctio porro deleniti. Veritatis laboriosam nobis aspernatur."], ["key", "griffin_d_amore"], ["created_at", "2016-01-27 21:10:18.509341"], ["updated_at", "2016-01-27 21:10:18.509341"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "accusantium"], ["key", "accusantium"], ["created_at", "2016-01-27 21:10:18.511996"], ["updated_at", "2016-01-27 21:10:18.511996"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "impedit"], ["key", "impedit"], ["created_at", "2016-01-27 21:10:18.513794"], ["updated_at", "2016-01-27 21:10:18.513794"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 21:10:18.515609"], ["updated_at", "2016-01-27 21:10:18.515609"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Bronze Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:10:18.519042"], ["updated_at", "2016-01-27 21:10:18.519042"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:10:18.522105"], ["updated_at", "2016-01-27 21:10:18.522105"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Wool Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:10:18.523985"], ["updated_at", "2016-01-27 21:10:18.523985"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Silk Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:10:18.525855"], ["updated_at", "2016-01-27 21:10:18.525855"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jocelyn Bernier"], ["job_title", "Forward Implementation Coordinator"], ["greetings", "Architecto et distinctio impedit repellendus possimus suscipit aut."], ["summary", "Consequatur deserunt aut occaecati quibusdam nihil laudantium. Est ratione libero. Debitis velit harum itaque. Architecto veniam deserunt. Autem est dolorem possimus."], ["key", "jocelyn_bernier"], ["created_at", "2016-01-27 21:10:18.536446"], ["updated_at", "2016-01-27 21:10:18.536446"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-27 21:10:18.538530"], ["updated_at", "2016-01-27 21:10:18.538530"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sed"], ["key", "sed"], ["created_at", "2016-01-27 21:10:18.540156"], ["updated_at", "2016-01-27 21:10:18.540156"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 21:10:18.541459"], ["updated_at", "2016-01-27 21:10:18.541459"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Wooden Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:10:18.546249"], ["updated_at", "2016-01-27 21:10:18.546249"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Steel Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:10:18.549275"], ["updated_at", "2016-01-27 21:10:18.549275"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Paper Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:10:18.552331"], ["updated_at", "2016-01-27 21:10:18.552331"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wool Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:10:18.554474"], ["updated_at", "2016-01-27 21:10:18.554474"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aida Treutel"], ["job_title", "Legacy Applications Facilitator"], ["greetings", "Quos deleniti consectetur saepe a sed."], ["summary", "Debitis officia autem non. Distinctio et odio. Quae qui numquam sunt dolorem. Accusamus cupiditate qui cum quis praesentium et aut."], ["key", "aida_treutel"], ["created_at", "2016-01-27 21:10:18.558659"], ["updated_at", "2016-01-27 21:10:18.558659"]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sed"], ["key", "sed"], ["created_at", "2016-01-27 21:10:18.562633"], ["updated_at", "2016-01-27 21:10:18.562633"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "commodi"], ["key", "commodi"], ["created_at", "2016-01-27 21:10:18.564518"], ["updated_at", "2016-01-27 21:10:18.564518"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "corporis"], ["key", "corporis"], ["created_at", "2016-01-27 21:10:18.565909"], ["updated_at", "2016-01-27 21:10:18.565909"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Steel Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:10:18.569392"], ["updated_at", "2016-01-27 21:10:18.569392"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Silk Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:10:18.572368"], ["updated_at", "2016-01-27 21:10:18.572368"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Marble Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:10:18.574411"], ["updated_at", "2016-01-27 21:10:18.574411"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Concrete Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:10:18.576563"], ["updated_at", "2016-01-27 21:10:18.576563"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Orville Grimes"], ["job_title", "Future Creative Liaison"], ["greetings", "Earum nostrum veniam optio."], ["summary", "Eveniet voluptatem voluptas nostrum. Optio quia aliquam debitis ut reprehenderit quia. Quis rerum at corporis qui odio."], ["key", "orville_grimes"], ["created_at", "2016-01-27 21:10:18.585378"], ["updated_at", "2016-01-27 21:10:18.585378"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Plastic Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:10:18.587813"], ["updated_at", "2016-01-27 21:10:18.587813"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Silk Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:10:18.589924"], ["updated_at", "2016-01-27 21:10:18.589924"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Marble Watch"], ["site_id", 1], ["created_at", "2016-01-27 21:10:18.592645"], ["updated_at", "2016-01-27 21:10:18.592645"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Cotton Hat"], ["site_id", 1], ["created_at", "2016-01-27 21:10:18.596453"], ["updated_at", "2016-01-27 21:10:18.596453"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (14.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.3ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (225.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (293.3ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (8.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Pat Franecki"], ["job_title", "Central Quality Orchestrator"], ["greetings", "Facilis sunt rerum dicta modi consequatur aliquid voluptatem aliquam."], ["summary", "Quo voluptate et. Aut ut molestiae eaque nobis. Qui ipsa excepturi vel perferendis et commodi et."], ["key", "pat_franecki"], ["created_at", "2016-01-27 21:10:18.920655"], ["updated_at", "2016-01-27 21:10:18.920655"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wool Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:10:18.925734"], ["updated_at", "2016-01-27 21:10:18.925734"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (2.8ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Aluminum Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:10:18.930704"], ["updated_at", "2016-01-27 21:10:18.930704"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Iron Shirt"], ["site_id", 1], ["created_at", "2016-01-27 21:10:18.937493"], ["updated_at", "2016-01-27 21:10:18.937493"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Iron Shoes"], ["site_id", 1], ["created_at", "2016-01-27 21:10:18.941417"], ["updated_at", "2016-01-27 21:10:18.941417"]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (22.0ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bridgette Dickens"], ["job_title", "National Infrastructure Manager"], ["greetings", "Minima nesciunt iste harum expedita ducimus facilis enim."], ["summary", "Harum consequatur tempore qui quia molestiae eum. Voluptatem autem molestiae libero error. Inventore facilis et tenetur."], ["key", "bridgette_dickens"], ["created_at", "2016-01-27 21:10:18.975922"], ["updated_at", "2016-01-27 21:10:18.975922"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 21:10:18.980585"], ["updated_at", "2016-01-27 21:10:18.980585"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "temporibus"], ["key", "temporibus"], ["created_at", "2016-01-27 21:10:18.983478"], ["updated_at", "2016-01-27 21:10:18.983478"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ducimus"], ["key", "ducimus"], ["created_at", "2016-01-27 21:10:18.984980"], ["updated_at", "2016-01-27 21:10:18.984980"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Silk Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:10:18.987861"], ["updated_at", "2016-01-27 21:10:18.987861"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Leather Computer"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:10:18.990925"], ["updated_at", "2016-01-27 21:10:18.990925"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Aluminum Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:10:18.992822"], ["updated_at", "2016-01-27 21:10:18.992822"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Steel Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:10:18.995230"], ["updated_at", "2016-01-27 21:10:18.995230"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.9ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (15.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bethel Dietrich"], ["job_title", "Future Data Producer"], ["greetings", "Et eum ea maiores aut qui impedit accusantium corporis."], ["summary", "Corrupti mollitia quia. Est distinctio voluptas ea animi quam et vitae. Tenetur sunt velit ducimus consequuntur a."], ["key", "bethel_dietrich"], ["created_at", "2016-01-27 21:10:19.018775"], ["updated_at", "2016-01-27 21:10:19.018775"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-27 21:10:19.020726"], ["updated_at", "2016-01-27 21:10:19.020726"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "suscipit"], ["key", "suscipit"], ["created_at", "2016-01-27 21:10:19.022279"], ["updated_at", "2016-01-27 21:10:19.022279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 21:10:19.023580"], ["updated_at", "2016-01-27 21:10:19.023580"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:10:19.027963"], ["updated_at", "2016-01-27 21:10:19.027963"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Paper Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:10:19.031679"], ["updated_at", "2016-01-27 21:10:19.031679"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wool Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:10:19.033820"], ["updated_at", "2016-01-27 21:10:19.033820"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Bronze Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:10:19.035681"], ["updated_at", "2016-01-27 21:10:19.035681"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (12.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ozella Mosciski"], ["job_title", "Corporate Program Coordinator"], ["greetings", "Sit facilis nam amet."], ["summary", "Ducimus sit est itaque aut aperiam ratione. Delectus sint sit soluta fuga odit sunt voluptatem. Inventore qui rerum est voluptate. Molestiae voluptatem consequuntur totam aspernatur qui. Et alias ut."], ["key", "ozella_mosciski"], ["created_at", "2016-01-27 21:10:19.055413"], ["updated_at", "2016-01-27 21:10:19.055413"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (11.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Frieda Ruecker"], ["job_title", "Chief Communications Producer"], ["greetings", "Architecto veniam dolores possimus voluptates quisquam."], ["summary", "Inventore est qui. Quia qui similique quo. Facilis sunt ut molestiae aut est."], ["key", "mr_frieda_ruecker"], ["created_at", "2016-01-27 21:10:19.084349"], ["updated_at", "2016-01-27 21:10:19.084349"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.7ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Janick Feil Jr."], ["job_title", "Future Paradigm Specialist"], ["greetings", "A et deleniti exercitationem."], ["summary", "Eum eaque quos architecto dicta quasi enim. Doloribus ipsa optio tempora nam laborum quos sint. Ratione culpa a nam. Vero voluptate et."], ["key", "janick_feil_jr"], ["created_at", "2016-01-27 21:10:19.093441"], ["updated_at", "2016-01-27 21:10:19.093441"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 21:10:19.097087"], ["updated_at", "2016-01-27 21:10:19.097087"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-27 21:10:19.098806"], ["updated_at", "2016-01-27 21:10:19.098806"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-27 21:10:19.100337"], ["updated_at", "2016-01-27 21:10:19.100337"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Leather Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:10:19.105017"], ["updated_at", "2016-01-27 21:10:19.105017"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Leather Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:10:19.108445"], ["updated_at", "2016-01-27 21:10:19.108445"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Paper Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:10:19.110571"], ["updated_at", "2016-01-27 21:10:19.110571"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Plastic Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:10:19.112674"], ["updated_at", "2016-01-27 21:10:19.112674"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.3ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (18.5ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gerhard Wilkinson Sr."], ["job_title", "Legacy Intranet Planner"], ["greetings", "Ex sapiente voluptatum numquam itaque quas natus nihil dolores."], ["summary", "Maxime sed ducimus. Qui excepturi in consectetur eveniet nemo. Voluptatibus voluptates temporibus amet aut accusamus. Recusandae doloremque cum exercitationem occaecati."], ["key", "gerhard_wilkinson_sr"], ["created_at", "2016-01-27 21:20:57.660276"], ["updated_at", "2016-01-27 21:20:57.660276"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:20:57.679270"], ["updated_at", "2016-01-27 21:20:57.679270"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gaston Howe"], ["job_title", "Forward Solutions Technician"], ["greetings", "Molestiae quo fuga neque velit enim dolorum natus in."], ["summary", "Sint sit neque nemo. Magni quo facere voluptas et accusantium rerum. Asperiores qui autem et cupiditate voluptatibus est saepe."], ["key", "gaston_howe"], ["created_at", "2016-01-27 21:20:57.685352"], ["updated_at", "2016-01-27 21:20:57.685352"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:20:57.687598"], ["updated_at", "2016-01-27 21:20:57.687598"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Conor Rosenbaum"], ["job_title", "Customer Assurance Manager"], ["greetings", "Qui veniam mollitia necessitatibus et et consequatur qui est."], ["summary", "Sed doloremque assumenda et dolorem repellendus unde rem. Magnam deserunt ut laborum occaecati expedita sint quam. Nihil quo enim voluptatem. Sit id eius sunt. Neque recusandae repellendus corporis asperiores occaecati sed doloremque."], ["key", "conor_rosenbaum"], ["created_at", "2016-01-27 21:20:57.690385"], ["updated_at", "2016-01-27 21:20:57.690385"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:20:57.692584"], ["updated_at", "2016-01-27 21:20:57.692584"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kaelyn Lemke"], ["job_title", "Direct Configuration Executive"], ["greetings", "Voluptatum eum nostrum velit."], ["summary", "Mollitia dicta tenetur facilis perspiciatis. Expedita velit et voluptatum et accusamus. Fugit perspiciatis nihil animi. Libero quam quo est eligendi iure."], ["key", "kaelyn_lemke"], ["created_at", "2016-01-27 21:20:57.702073"], ["updated_at", "2016-01-27 21:20:57.702073"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:20:57.704628"], ["updated_at", "2016-01-27 21:20:57.704628"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Karelle Labadie"], ["job_title", "Lead Group Facilitator"], ["greetings", "Consequuntur nostrum atque dolore odio laudantium ullam sunt."], ["summary", "Atque officia aut illo ea. Reprehenderit excepturi voluptatibus. Est harum modi fugit ut accusantium sed. Consectetur mollitia suscipit cupiditate quas sed qui quis."], ["key", "karelle_labadie"], ["created_at", "2016-01-27 21:20:57.710026"], ["updated_at", "2016-01-27 21:20:57.710026"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:20:57.712788"], ["updated_at", "2016-01-27 21:20:57.712788"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Price Collier"], ["job_title", "Chief Communications Agent"], ["greetings", "A aut reprehenderit est atque qui qui explicabo."], ["summary", "Et voluptatem quasi dolorum sed. Veritatis et et voluptas sit rerum. Qui ea rerum eum aut incidunt. Alias quos autem ipsam quis omnis dolor quia. Illum qui nesciunt dignissimos voluptas."], ["key", "price_collier"], ["created_at", "2016-01-27 21:20:57.717836"], ["updated_at", "2016-01-27 21:20:57.717836"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:20:57.720578"], ["updated_at", "2016-01-27 21:20:57.720578"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Albertha Friesen"], ["job_title", "Principal Directives Planner"], ["greetings", "Et voluptas voluptatem qui."], ["summary", "Neque sequi error reprehenderit excepturi amet facere laudantium. Quas totam repellat incidunt dicta iure sapiente. Aut nam ducimus assumenda adipisci."], ["key", "albertha_friesen"], ["created_at", "2016-01-27 21:20:57.725313"], ["updated_at", "2016-01-27 21:20:57.725313"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sed"], ["key", "sed"], ["created_at", "2016-01-27 21:20:57.729881"], ["updated_at", "2016-01-27 21:20:57.729881"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "libero"], ["key", "libero"], ["created_at", "2016-01-27 21:20:57.731683"], ["updated_at", "2016-01-27 21:20:57.731683"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 21:20:57.738337"], ["updated_at", "2016-01-27 21:20:57.738337"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wool Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:20:57.767881"], ["updated_at", "2016-01-27 21:20:57.767881"]] SQL (0.2ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Copper Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:20:57.771930"], ["updated_at", "2016-01-27 21:20:57.771930"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Silk Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:20:57.774065"], ["updated_at", "2016-01-27 21:20:57.774065"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Steel Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:20:57.776290"], ["updated_at", "2016-01-27 21:20:57.776290"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jarrell Langosh"], ["job_title", "Investor Mobility Consultant"], ["greetings", "Totam ducimus omnis at architecto."], ["summary", "Sunt labore earum. Qui tempore maiores dolorem vitae dolor dolores ipsam. Tempore sit nobis est doloribus aperiam inventore."], ["key", "jarrell_langosh"], ["created_at", "2016-01-27 21:20:57.798726"], ["updated_at", "2016-01-27 21:20:57.798726"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consequuntur"], ["key", "consequuntur"], ["created_at", "2016-01-27 21:20:57.800821"], ["updated_at", "2016-01-27 21:20:57.800821"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-27 21:20:57.802844"], ["updated_at", "2016-01-27 21:20:57.802844"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "autem"], ["key", "autem"], ["created_at", "2016-01-27 21:20:57.804336"], ["updated_at", "2016-01-27 21:20:57.804336"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Leather Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:20:57.807531"], ["updated_at", "2016-01-27 21:20:57.807531"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Granite Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:20:57.810389"], ["updated_at", "2016-01-27 21:20:57.810389"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Leather Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:20:57.812159"], ["updated_at", "2016-01-27 21:20:57.812159"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Silk Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:20:57.813922"], ["updated_at", "2016-01-27 21:20:57.813922"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Emelia Reichert"], ["job_title", "Lead Integration Agent"], ["greetings", "Velit possimus in odit eos delectus tempora nemo."], ["summary", "Non autem atque debitis minima nemo. Voluptas iste aut blanditiis atque alias id asperiores. Dicta aliquam velit est. Sit veniam non voluptatibus."], ["key", "emelia_reichert"], ["created_at", "2016-01-27 21:20:57.824550"], ["updated_at", "2016-01-27 21:20:57.824550"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 21:20:57.826867"], ["updated_at", "2016-01-27 21:20:57.826867"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quis"], ["key", "quis"], ["created_at", "2016-01-27 21:20:57.828612"], ["updated_at", "2016-01-27 21:20:57.828612"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cum"], ["key", "cum"], ["created_at", "2016-01-27 21:20:57.830225"], ["updated_at", "2016-01-27 21:20:57.830225"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Granite Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:20:57.833972"], ["updated_at", "2016-01-27 21:20:57.833972"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wooden Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:20:57.837405"], ["updated_at", "2016-01-27 21:20:57.837405"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Cotton Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:20:57.839464"], ["updated_at", "2016-01-27 21:20:57.839464"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Bronze Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:20:57.841321"], ["updated_at", "2016-01-27 21:20:57.841321"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Una Sanford"], ["job_title", "National Web Administrator"], ["greetings", "Dicta laudantium sint porro asperiores est cumque."], ["summary", "Corrupti voluptatem autem consequatur. Numquam eveniet recusandae cumque quos voluptatem. Accusamus excepturi vel aut et. Ullam veniam autem. Perspiciatis a rerum et."], ["key", "dr_una_sanford"], ["created_at", "2016-01-27 21:20:57.847367"], ["updated_at", "2016-01-27 21:20:57.847367"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ratione"], ["key", "ratione"], ["created_at", "2016-01-27 21:20:57.849642"], ["updated_at", "2016-01-27 21:20:57.849642"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 21:20:57.852801"], ["updated_at", "2016-01-27 21:20:57.852801"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "veniam"], ["key", "veniam"], ["created_at", "2016-01-27 21:20:57.854570"], ["updated_at", "2016-01-27 21:20:57.854570"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Bronze Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:20:57.857820"], ["updated_at", "2016-01-27 21:20:57.857820"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wooden Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:20:57.861678"], ["updated_at", "2016-01-27 21:20:57.861678"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Concrete Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:20:57.864721"], ["updated_at", "2016-01-27 21:20:57.864721"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Rubber Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:20:57.867330"], ["updated_at", "2016-01-27 21:20:57.867330"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Abdullah Leffler"], ["job_title", "Human Integration Associate"], ["greetings", "Incidunt quia accusantium vitae qui similique nam et."], ["summary", "Aut explicabo pariatur quia aliquid voluptatibus est. Non iusto nam eos fugiat omnis. Non earum maiores alias aperiam."], ["key", "dr_abdullah_leffler"], ["created_at", "2016-01-27 21:20:57.876155"], ["updated_at", "2016-01-27 21:20:57.876155"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Steel Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:20:57.878794"], ["updated_at", "2016-01-27 21:20:57.878794"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Steel Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:20:57.882115"], ["updated_at", "2016-01-27 21:20:57.882115"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Marble Chair"], ["site_id", 1], ["created_at", "2016-01-27 21:20:57.885664"], ["updated_at", "2016-01-27 21:20:57.885664"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Hat"], ["site_id", 1], ["created_at", "2016-01-27 21:20:57.887913"], ["updated_at", "2016-01-27 21:20:57.887913"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (14.8ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (277.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (343.2ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Herminio Cummerata"], ["job_title", "International Security Supervisor"], ["greetings", "Architecto provident recusandae rerum amet velit."], ["summary", "Necessitatibus et vero doloribus odit harum similique corrupti. Maxime eaque illum qui nisi eos facilis nulla. Dicta velit et maiores quia ipsam voluptatem qui. Doloremque assumenda ut voluptatum veritatis mollitia non voluptatem."], ["key", "mr_herminio_cummerata"], ["created_at", "2016-01-27 21:20:58.256840"], ["updated_at", "2016-01-27 21:20:58.256840"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wool Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:20:58.263223"], ["updated_at", "2016-01-27 21:20:58.263223"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Steel Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:20:58.267893"], ["updated_at", "2016-01-27 21:20:58.267893"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Granite Bench"], ["site_id", 1], ["created_at", "2016-01-27 21:20:58.271586"], ["updated_at", "2016-01-27 21:20:58.271586"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Silk Chair"], ["site_id", 1], ["created_at", "2016-01-27 21:20:58.275831"], ["updated_at", "2016-01-27 21:20:58.275831"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.3ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Avis Cronin"], ["job_title", "Human Solutions Administrator"], ["greetings", "Et quo ducimus voluptatem."], ["summary", "Velit eos consectetur impedit. Voluptas dicta eos quos quas consectetur. Sint praesentium possimus dolore."], ["key", "avis_cronin"], ["created_at", "2016-01-27 21:20:58.298742"], ["updated_at", "2016-01-27 21:20:58.298742"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nihil"], ["key", "nihil"], ["created_at", "2016-01-27 21:20:58.300864"], ["updated_at", "2016-01-27 21:20:58.300864"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tempora"], ["key", "tempora"], ["created_at", "2016-01-27 21:20:58.302634"], ["updated_at", "2016-01-27 21:20:58.302634"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quam"], ["key", "quam"], ["created_at", "2016-01-27 21:20:58.303990"], ["updated_at", "2016-01-27 21:20:58.303990"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Steel Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:20:58.309076"], ["updated_at", "2016-01-27 21:20:58.309076"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Plastic Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:20:58.312130"], ["updated_at", "2016-01-27 21:20:58.312130"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Leather Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:20:58.314076"], ["updated_at", "2016-01-27 21:20:58.314076"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Concrete Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:20:58.316119"], ["updated_at", "2016-01-27 21:20:58.316119"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (15.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kaycee Hahn"], ["job_title", "Principal Brand Executive"], ["greetings", "Veritatis aliquam doloremque est sunt eveniet necessitatibus et."], ["summary", "Tempora minima ab. Consequatur reprehenderit corrupti occaecati eius a. Architecto voluptas aspernatur quia adipisci voluptatem. Omnis et ducimus aut vel voluptas incidunt."], ["key", "kaycee_hahn"], ["created_at", "2016-01-27 21:20:58.338053"], ["updated_at", "2016-01-27 21:20:58.338053"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "necessitatibus"], ["key", "necessitatibus"], ["created_at", "2016-01-27 21:20:58.341776"], ["updated_at", "2016-01-27 21:20:58.341776"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 21:20:58.343548"], ["updated_at", "2016-01-27 21:20:58.343548"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 21:20:58.345827"], ["updated_at", "2016-01-27 21:20:58.345827"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:20:58.349499"], ["updated_at", "2016-01-27 21:20:58.349499"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Linen Plate"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:20:58.352363"], ["updated_at", "2016-01-27 21:20:58.352363"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:20:58.354573"], ["updated_at", "2016-01-27 21:20:58.354573"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Silk Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:20:58.357674"], ["updated_at", "2016-01-27 21:20:58.357674"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.9ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.5ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (12.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Baby Gutmann DDS"], ["job_title", "Regional Communications Developer"], ["greetings", "Nobis sapiente nulla sit esse quia rerum."], ["summary", "Voluptatem ad nihil. Consequuntur quos placeat ut eaque. Qui odit nostrum cum at est. Velit reprehenderit velit. Aliquid aliquam molestiae ipsum dolor."], ["key", "baby_gutmann_dds"], ["created_at", "2016-01-27 21:20:58.381458"], ["updated_at", "2016-01-27 21:20:58.381458"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (10.5ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Keyshawn Pollich"], ["job_title", "Direct Division Executive"], ["greetings", "Explicabo in eum quia officia."], ["summary", "Cupiditate amet aut sapiente hic velit. Perferendis accusamus et odio. Quia molestiae omnis maiores ut unde. Consectetur assumenda delectus sunt a dolorem id nesciunt."], ["key", "keyshawn_pollich"], ["created_at", "2016-01-27 21:20:58.410672"], ["updated_at", "2016-01-27 21:20:58.410672"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.2ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Viola Hermiston"], ["job_title", "Forward Tactics Consultant"], ["greetings", "Occaecati a voluptates aut sit."], ["summary", "Consequatur nostrum voluptatem fugit iste fuga repellendus pariatur. Ab maiores explicabo. Et iusto nemo doloremque asperiores facilis est."], ["key", "mr_viola_hermiston"], ["created_at", "2016-01-27 21:20:58.419552"], ["updated_at", "2016-01-27 21:20:58.419552"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cumque"], ["key", "cumque"], ["created_at", "2016-01-27 21:20:58.423452"], ["updated_at", "2016-01-27 21:20:58.423452"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "praesentium"], ["key", "praesentium"], ["created_at", "2016-01-27 21:20:58.425374"], ["updated_at", "2016-01-27 21:20:58.425374"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consequatur"], ["key", "consequatur"], ["created_at", "2016-01-27 21:20:58.426755"], ["updated_at", "2016-01-27 21:20:58.426755"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Silk Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:20:58.429741"], ["updated_at", "2016-01-27 21:20:58.429741"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Rubber Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:20:58.433062"], ["updated_at", "2016-01-27 21:20:58.433062"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Paper Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:20:58.434993"], ["updated_at", "2016-01-27 21:20:58.434993"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Steel Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:20:58.436770"], ["updated_at", "2016-01-27 21:20:58.436770"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.3ms) Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (18.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Makenna Nicolas"], ["job_title", "Global Division Administrator"], ["greetings", "Eaque quo vel vitae velit veniam eos."], ["summary", "Nam pariatur qui ea assumenda. Tenetur deserunt iusto nobis et. Sit fugiat odit aut ex suscipit praesentium odio. Sed blanditiis eaque beatae. Ea eaque dolores."], ["key", "makenna_nicolas"], ["created_at", "2016-01-27 21:21:11.043657"], ["updated_at", "2016-01-27 21:21:11.043657"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:21:11.063102"], ["updated_at", "2016-01-27 21:21:11.063102"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Celestino Gerhold"], ["job_title", "Chief Factors Agent"], ["greetings", "Quaerat quo voluptatum vel a."], ["summary", "Dolores rerum dignissimos fugit sit. Sunt earum repellendus aut voluptates est et voluptatem. Eligendi velit magnam consequatur."], ["key", "celestino_gerhold"], ["created_at", "2016-01-27 21:21:11.069542"], ["updated_at", "2016-01-27 21:21:11.069542"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:21:11.072133"], ["updated_at", "2016-01-27 21:21:11.072133"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Connie Rowe"], ["job_title", "International Program Associate"], ["greetings", "Corrupti quo alias distinctio ullam nisi id voluptatum."], ["summary", "Necessitatibus possimus nulla similique dolorum aut. Eos eum voluptatem ut cum. Iste nihil laboriosam. Ut ex temporibus."], ["key", "connie_rowe"], ["created_at", "2016-01-27 21:21:11.075819"], ["updated_at", "2016-01-27 21:21:11.075819"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:21:11.077525"], ["updated_at", "2016-01-27 21:21:11.077525"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gabriel Hodkiewicz"], ["job_title", "Direct Communications Director"], ["greetings", "Veritatis aperiam vero sunt."], ["summary", "Voluptatem quia culpa aut autem ipsam atque provident. Necessitatibus omnis dolorem et sit eum quas. Totam placeat blanditiis tempora ratione. Aspernatur velit magnam molestias fuga qui veritatis est. Animi explicabo quas qui quidem et."], ["key", "gabriel_hodkiewicz"], ["created_at", "2016-01-27 21:21:11.083818"], ["updated_at", "2016-01-27 21:21:11.083818"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:21:11.085930"], ["updated_at", "2016-01-27 21:21:11.085930"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Constance Sipes"], ["job_title", "Principal Metrics Consultant"], ["greetings", "Quasi dolores rerum tempora."], ["summary", "Facere odio dolore autem corporis. Vel tenetur ut aut eum. Vel facilis et."], ["key", "constance_sipes"], ["created_at", "2016-01-27 21:21:11.089841"], ["updated_at", "2016-01-27 21:21:11.089841"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:21:11.092283"], ["updated_at", "2016-01-27 21:21:11.092283"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Fritz Bergnaum"], ["job_title", "Dynamic Interactions Agent"], ["greetings", "Qui consequatur eveniet debitis et ducimus distinctio et."], ["summary", "Itaque sed id tempore molestiae repellendus iste. Occaecati atque id consequatur. Quasi eos atque velit. Velit iure delectus necessitatibus ab voluptatibus porro."], ["key", "fritz_bergnaum"], ["created_at", "2016-01-27 21:21:11.096318"], ["updated_at", "2016-01-27 21:21:11.096318"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:21:11.098345"], ["updated_at", "2016-01-27 21:21:11.098345"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Susanna Kilback"], ["job_title", "Customer Implementation Engineer"], ["greetings", "Pariatur quis ducimus neque."], ["summary", "Quae labore enim at tempora non deleniti. Necessitatibus neque occaecati dolore. Earum molestiae odio accusamus nihil reiciendis fugiat."], ["key", "susanna_kilback"], ["created_at", "2016-01-27 21:21:11.102338"], ["updated_at", "2016-01-27 21:21:11.102338"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nemo"], ["key", "nemo"], ["created_at", "2016-01-27 21:21:11.107892"], ["updated_at", "2016-01-27 21:21:11.107892"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "unde"], ["key", "unde"], ["created_at", "2016-01-27 21:21:11.109883"], ["updated_at", "2016-01-27 21:21:11.109883"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sint"], ["key", "sint"], ["created_at", "2016-01-27 21:21:11.113618"], ["updated_at", "2016-01-27 21:21:11.113618"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Paper Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:21:11.135858"], ["updated_at", "2016-01-27 21:21:11.135858"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:21:11.139866"], ["updated_at", "2016-01-27 21:21:11.139866"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Linen Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:21:11.142358"], ["updated_at", "2016-01-27 21:21:11.142358"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Marble Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:21:11.144692"], ["updated_at", "2016-01-27 21:21:11.144692"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Daija Ziemann DDS"], ["job_title", "Investor Operations Manager"], ["greetings", "Cupiditate enim dolor quia voluptas ab."], ["summary", "Et corporis ullam dignissimos et. Ipsa odio numquam nesciunt minima laborum. Numquam eos quibusdam."], ["key", "daija_ziemann_dds"], ["created_at", "2016-01-27 21:21:11.167482"], ["updated_at", "2016-01-27 21:21:11.167482"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quis"], ["key", "quis"], ["created_at", "2016-01-27 21:21:11.169539"], ["updated_at", "2016-01-27 21:21:11.169539"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "illo"], ["key", "illo"], ["created_at", "2016-01-27 21:21:11.171810"], ["updated_at", "2016-01-27 21:21:11.171810"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-27 21:21:11.173363"], ["updated_at", "2016-01-27 21:21:11.173363"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Rubber Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:21:11.177120"], ["updated_at", "2016-01-27 21:21:11.177120"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Linen Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:21:11.180310"], ["updated_at", "2016-01-27 21:21:11.180310"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Iron Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:21:11.182172"], ["updated_at", "2016-01-27 21:21:11.182172"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Concrete Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:21:11.184116"], ["updated_at", "2016-01-27 21:21:11.184116"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sonya Parker II"], ["job_title", "Chief Brand Assistant"], ["greetings", "Qui rerum aliquid qui temporibus id optio."], ["summary", "Assumenda optio adipisci dolores ad. Non eos est et enim facilis sequi expedita. Voluptatibus debitis voluptatem sit vero ipsum. Minus iusto maxime deleniti."], ["key", "sonya_parker_ii"], ["created_at", "2016-01-27 21:21:11.195140"], ["updated_at", "2016-01-27 21:21:11.195140"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "vel"], ["key", "vel"], ["created_at", "2016-01-27 21:21:11.197128"], ["updated_at", "2016-01-27 21:21:11.197128"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "magni"], ["key", "magni"], ["created_at", "2016-01-27 21:21:11.198728"], ["updated_at", "2016-01-27 21:21:11.198728"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iste"], ["key", "iste"], ["created_at", "2016-01-27 21:21:11.200548"], ["updated_at", "2016-01-27 21:21:11.200548"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Aluminum Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:21:11.205476"], ["updated_at", "2016-01-27 21:21:11.205476"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Linen Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:21:11.209038"], ["updated_at", "2016-01-27 21:21:11.209038"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Leather Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:21:11.210889"], ["updated_at", "2016-01-27 21:21:11.210889"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Paper Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:21:11.212948"], ["updated_at", "2016-01-27 21:21:11.212948"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ransom Balistreri"], ["job_title", "Internal Program Specialist"], ["greetings", "Dolor qui voluptas sint quis fuga sit."], ["summary", "Velit voluptatum eaque est aut cumque saepe quidem. Et aut tempore. Tenetur ut ipsum fuga animi. Quod dolorem enim."], ["key", "ransom_balistreri"], ["created_at", "2016-01-27 21:21:11.216926"], ["updated_at", "2016-01-27 21:21:11.216926"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quam"], ["key", "quam"], ["created_at", "2016-01-27 21:21:11.218816"], ["updated_at", "2016-01-27 21:21:11.218816"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eveniet"], ["key", "eveniet"], ["created_at", "2016-01-27 21:21:11.220389"], ["updated_at", "2016-01-27 21:21:11.220389"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "amet"], ["key", "amet"], ["created_at", "2016-01-27 21:21:11.221688"], ["updated_at", "2016-01-27 21:21:11.221688"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Rubber Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:21:11.224757"], ["updated_at", "2016-01-27 21:21:11.224757"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Copper Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:21:11.228218"], ["updated_at", "2016-01-27 21:21:11.228218"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Leather Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:21:11.230047"], ["updated_at", "2016-01-27 21:21:11.230047"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wool Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:21:11.231784"], ["updated_at", "2016-01-27 21:21:11.231784"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Maurice Koch"], ["job_title", "National Program Specialist"], ["greetings", "Vitae non aspernatur iure vel omnis repellat corrupti necessitatibus."], ["summary", "Minus aut at ut quod voluptatem saepe. Nihil deserunt dignissimos. Beatae eum dolorum sequi aliquid rem nihil. Explicabo dolore nam voluptatem qui nostrum eveniet."], ["key", "maurice_koch"], ["created_at", "2016-01-27 21:21:11.249381"], ["updated_at", "2016-01-27 21:21:11.249381"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wool Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:21:11.252523"], ["updated_at", "2016-01-27 21:21:11.252523"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Steel Wallet"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:21:11.256442"], ["updated_at", "2016-01-27 21:21:11.256442"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Steel Gloves"], ["site_id", 1], ["created_at", "2016-01-27 21:21:11.258775"], ["updated_at", "2016-01-27 21:21:11.258775"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Marble Watch"], ["site_id", 1], ["created_at", "2016-01-27 21:21:11.260888"], ["updated_at", "2016-01-27 21:21:11.260888"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (16.2ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (215.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (286.6ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Micaela Feest"], ["job_title", "Central Program Supervisor"], ["greetings", "Ut et minima assumenda sint."], ["summary", "Ut impedit asperiores optio non ratione. Ducimus itaque amet. A temporibus maiores id inventore corporis sed."], ["key", "micaela_feest"], ["created_at", "2016-01-27 21:21:11.571993"], ["updated_at", "2016-01-27 21:21:11.571993"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Iron Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:21:11.576983"], ["updated_at", "2016-01-27 21:21:11.576983"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Cotton Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:21:11.581653"], ["updated_at", "2016-01-27 21:21:11.581653"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Copper Gloves"], ["site_id", 1], ["created_at", "2016-01-27 21:21:11.585730"], ["updated_at", "2016-01-27 21:21:11.585730"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wool Lamp"], ["site_id", 1], ["created_at", "2016-01-27 21:21:11.589484"], ["updated_at", "2016-01-27 21:21:11.589484"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (10.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.6ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Vesta Cummings DVM"], ["job_title", "Dynamic Research Director"], ["greetings", "Qui laborum eveniet reiciendis et quia optio."], ["summary", "Ea animi quasi sequi blanditiis. Nesciunt omnis voluptatem. Expedita et pariatur natus quam qui repudiandae consequatur. Optio quae id aperiam autem neque animi."], ["key", "vesta_cummings_dvm"], ["created_at", "2016-01-27 21:21:11.619410"], ["updated_at", "2016-01-27 21:21:11.619410"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "facere"], ["key", "facere"], ["created_at", "2016-01-27 21:21:11.622972"], ["updated_at", "2016-01-27 21:21:11.622972"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "inventore"], ["key", "inventore"], ["created_at", "2016-01-27 21:21:11.624714"], ["updated_at", "2016-01-27 21:21:11.624714"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "molestiae"], ["key", "molestiae"], ["created_at", "2016-01-27 21:21:11.626406"], ["updated_at", "2016-01-27 21:21:11.626406"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Marble Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:21:11.629846"], ["updated_at", "2016-01-27 21:21:11.629846"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Rubber Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:21:11.632961"], ["updated_at", "2016-01-27 21:21:11.632961"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Rubber Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:21:11.634824"], ["updated_at", "2016-01-27 21:21:11.634824"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Cotton Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:21:11.636609"], ["updated_at", "2016-01-27 21:21:11.636609"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.4ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.8ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Emmet Gibson"], ["job_title", "Future Metrics Executive"], ["greetings", "Voluptatibus optio ad et voluptatem asperiores."], ["summary", "Rerum optio aut. Aliquam rerum modi dolores. Corrupti et est eius ullam. In est recusandae tempore velit quas exercitationem."], ["key", "emmet_gibson"], ["created_at", "2016-01-27 21:21:11.660188"], ["updated_at", "2016-01-27 21:21:11.660188"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "porro"], ["key", "porro"], ["created_at", "2016-01-27 21:21:11.662387"], ["updated_at", "2016-01-27 21:21:11.662387"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sequi"], ["key", "sequi"], ["created_at", "2016-01-27 21:21:11.664018"], ["updated_at", "2016-01-27 21:21:11.664018"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ratione"], ["key", "ratione"], ["created_at", "2016-01-27 21:21:11.665678"], ["updated_at", "2016-01-27 21:21:11.665678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Copper Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:21:11.668936"], ["updated_at", "2016-01-27 21:21:11.668936"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Marble Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:21:11.671922"], ["updated_at", "2016-01-27 21:21:11.671922"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Steel Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:21:11.673763"], ["updated_at", "2016-01-27 21:21:11.673763"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:21:11.675592"], ["updated_at", "2016-01-27 21:21:11.675592"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.6ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (12.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Heloise Gerhold"], ["job_title", "International Branding Representative"], ["greetings", "Architecto explicabo sed impedit libero et aut debitis."], ["summary", "Ab impedit et aut maiores suscipit rerum expedita. Vero qui possimus excepturi natus. Quibusdam delectus modi. Ut corrupti blanditiis."], ["key", "heloise_gerhold"], ["created_at", "2016-01-27 21:21:11.695199"], ["updated_at", "2016-01-27 21:21:11.695199"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (10.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jarvis Parker"], ["job_title", "Dynamic Directives Producer"], ["greetings", "Voluptatum aut provident est autem praesentium."], ["summary", "Eaque voluptas non qui quos. Exercitationem fugit mollitia eius veniam sit. Delectus corrupti architecto illo. Cupiditate omnis corporis. Quisquam occaecati nesciunt."], ["key", "jarvis_parker"], ["created_at", "2016-01-27 21:21:11.722262"], ["updated_at", "2016-01-27 21:21:11.722262"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.3ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jeffrey Yundt"], ["job_title", "Forward Directives Coordinator"], ["greetings", "Quia iusto enim aliquam earum sit distinctio."], ["summary", "Saepe porro reprehenderit. Sit sunt neque consequatur nihil enim. Quaerat dolorum est et nemo ab eum numquam."], ["key", "jeffrey_yundt"], ["created_at", "2016-01-27 21:21:11.731343"], ["updated_at", "2016-01-27 21:21:11.731343"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "perspiciatis"], ["key", "perspiciatis"], ["created_at", "2016-01-27 21:21:11.733391"], ["updated_at", "2016-01-27 21:21:11.733391"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quos"], ["key", "quos"], ["created_at", "2016-01-27 21:21:11.734984"], ["updated_at", "2016-01-27 21:21:11.734984"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsam"], ["key", "ipsam"], ["created_at", "2016-01-27 21:21:11.736355"], ["updated_at", "2016-01-27 21:21:11.736355"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:21:11.740866"], ["updated_at", "2016-01-27 21:21:11.740866"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Steel Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:21:11.744377"], ["updated_at", "2016-01-27 21:21:11.744377"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Concrete Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:21:11.747001"], ["updated_at", "2016-01-27 21:21:11.747001"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wool Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:21:11.749220"], ["updated_at", "2016-01-27 21:21:11.749220"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (3.9ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Rocky Kulas"], ["job_title", "Human Configuration Architect"], ["greetings", "At et aspernatur et dolorem reiciendis."], ["summary", "Sed consequatur doloribus. Laborum reiciendis qui delectus autem adipisci accusantium reprehenderit. Nemo ex amet dolorem eum fuga voluptatum nihil. Rerum facere aut soluta repudiandae aut."], ["key", "rocky_kulas"], ["created_at", "2016-01-27 21:23:25.975647"], ["updated_at", "2016-01-27 21:23:25.975647"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (1.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:23:25.994470"], ["updated_at", "2016-01-27 21:23:25.994470"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Cindy Block"], ["job_title", "Dynamic Functionality Representative"], ["greetings", "Blanditiis sed quisquam aut iste repellendus ut."], ["summary", "Eos tempore rerum ut et rem. Odio quam modi consequatur adipisci et porro ipsam. Explicabo ipsa ipsam sed."], ["key", "miss_cindy_block"], ["created_at", "2016-01-27 21:23:26.002264"], ["updated_at", "2016-01-27 21:23:26.002264"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:23:26.004816"], ["updated_at", "2016-01-27 21:23:26.004816"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Michaela Mayer MD"], ["job_title", "Legacy Brand Officer"], ["greetings", "Optio sed aut sapiente quo quis est."], ["summary", "Iusto labore cupiditate unde consequuntur. Hic ad et libero culpa dolor quam. Aliquid harum magni in. Optio ut rerum debitis voluptatem natus sit adipisci."], ["key", "michaela_mayer_md"], ["created_at", "2016-01-27 21:23:26.008209"], ["updated_at", "2016-01-27 21:23:26.008209"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:23:26.009929"], ["updated_at", "2016-01-27 21:23:26.009929"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "April Haley"], ["job_title", "Customer Response Supervisor"], ["greetings", "Aut eligendi vel ea repellat sapiente."], ["summary", "Quia et soluta numquam et veritatis. Maxime enim quae id sed repellat nisi. Et inventore odit omnis reiciendis quod qui."], ["key", "april_haley"], ["created_at", "2016-01-27 21:23:26.016358"], ["updated_at", "2016-01-27 21:23:26.016358"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:23:26.019157"], ["updated_at", "2016-01-27 21:23:26.019157"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gideon Wolff"], ["job_title", "Corporate Identity Executive"], ["greetings", "Voluptatem explicabo sunt alias dignissimos."], ["summary", "Aspernatur doloribus qui. Est cupiditate nihil ut maiores et. Explicabo unde voluptatem voluptas illum."], ["key", "gideon_wolff"], ["created_at", "2016-01-27 21:23:26.023185"], ["updated_at", "2016-01-27 21:23:26.023185"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:23:26.025331"], ["updated_at", "2016-01-27 21:23:26.025331"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jett Hartmann"], ["job_title", "Dynamic Division Executive"], ["greetings", "Iste ad laboriosam et enim cumque."], ["summary", "Corrupti excepturi aut in voluptatem accusantium accusamus sit. Quam ad culpa fugiat et. Occaecati voluptatum sapiente magni. Dolorem voluptas architecto repellat quidem et. Et consequatur odit."], ["key", "jett_hartmann"], ["created_at", "2016-01-27 21:23:26.029369"], ["updated_at", "2016-01-27 21:23:26.029369"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:23:26.031756"], ["updated_at", "2016-01-27 21:23:26.031756"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Madie Macejkovic"], ["job_title", "Central Mobility Producer"], ["greetings", "Optio animi voluptas perferendis."], ["summary", "Exercitationem rem iure dolores. Inventore officia culpa et porro quia deserunt. Et rem quidem veniam numquam aut. Necessitatibus dolorem repudiandae expedita commodi. Voluptas culpa sed."], ["key", "madie_macejkovic"], ["created_at", "2016-01-27 21:23:26.037659"], ["updated_at", "2016-01-27 21:23:26.037659"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 21:23:26.042988"], ["updated_at", "2016-01-27 21:23:26.042988"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quae"], ["key", "quae"], ["created_at", "2016-01-27 21:23:26.045026"], ["updated_at", "2016-01-27 21:23:26.045026"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 21:23:26.049083"], ["updated_at", "2016-01-27 21:23:26.049083"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Steel Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:23:26.076351"], ["updated_at", "2016-01-27 21:23:26.076351"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Marble Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:23:26.080036"], ["updated_at", "2016-01-27 21:23:26.080036"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Paper Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:23:26.082214"], ["updated_at", "2016-01-27 21:23:26.082214"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Aluminum Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:23:26.086149"], ["updated_at", "2016-01-27 21:23:26.086149"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ressie Funk"], ["job_title", "Direct Intranet Facilitator"], ["greetings", "Recusandae porro cupiditate hic dolore laborum est id accusantium."], ["summary", "Exercitationem ex enim est dolorum nesciunt. Dolore similique dolor accusamus. Incidunt sit sapiente expedita accusamus nisi velit itaque. Sunt neque totam. At aut reprehenderit et natus ducimus."], ["key", "ressie_funk"], ["created_at", "2016-01-27 21:23:26.109763"], ["updated_at", "2016-01-27 21:23:26.109763"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "autem"], ["key", "autem"], ["created_at", "2016-01-27 21:23:26.111783"], ["updated_at", "2016-01-27 21:23:26.111783"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 21:23:26.113521"], ["updated_at", "2016-01-27 21:23:26.113521"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nisi"], ["key", "nisi"], ["created_at", "2016-01-27 21:23:26.114914"], ["updated_at", "2016-01-27 21:23:26.114914"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wool Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:23:26.118524"], ["updated_at", "2016-01-27 21:23:26.118524"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Leather Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:23:26.122061"], ["updated_at", "2016-01-27 21:23:26.122061"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Silk Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:23:26.124111"], ["updated_at", "2016-01-27 21:23:26.124111"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Linen Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:23:26.126514"], ["updated_at", "2016-01-27 21:23:26.126514"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Shanny Jakubowski"], ["job_title", "Customer Branding Specialist"], ["greetings", "Libero omnis ea sint natus labore velit ipsam illo."], ["summary", "Qui quia vitae. Saepe est et nobis distinctio ut omnis quis. In quaerat impedit est ipsum. Alias eos explicabo omnis aliquam repellat. Non consequatur occaecati beatae non."], ["key", "shanny_jakubowski"], ["created_at", "2016-01-27 21:23:26.139298"], ["updated_at", "2016-01-27 21:23:26.139298"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "illo"], ["key", "illo"], ["created_at", "2016-01-27 21:23:26.141809"], ["updated_at", "2016-01-27 21:23:26.141809"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "repellendus"], ["key", "repellendus"], ["created_at", "2016-01-27 21:23:26.144900"], ["updated_at", "2016-01-27 21:23:26.144900"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "assumenda"], ["key", "assumenda"], ["created_at", "2016-01-27 21:23:26.147347"], ["updated_at", "2016-01-27 21:23:26.147347"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Concrete Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:23:26.154125"], ["updated_at", "2016-01-27 21:23:26.154125"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Steel Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:23:26.158835"], ["updated_at", "2016-01-27 21:23:26.158835"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Cotton Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:23:26.160931"], ["updated_at", "2016-01-27 21:23:26.160931"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Silk Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:23:26.162817"], ["updated_at", "2016-01-27 21:23:26.162817"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Emmitt Jacobson"], ["job_title", "Human Response Facilitator"], ["greetings", "A animi perspiciatis dolorem voluptatum voluptatem rerum sint aut."], ["summary", "Iure ut debitis et quis assumenda. Adipisci molestiae ipsa voluptatem est. Ex numquam inventore et illo iure. Accusamus mollitia ullam."], ["key", "emmitt_jacobson"], ["created_at", "2016-01-27 21:23:26.168498"], ["updated_at", "2016-01-27 21:23:26.168498"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ad"], ["key", "ad"], ["created_at", "2016-01-27 21:23:26.171600"], ["updated_at", "2016-01-27 21:23:26.171600"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "accusamus"], ["key", "accusamus"], ["created_at", "2016-01-27 21:23:26.173937"], ["updated_at", "2016-01-27 21:23:26.173937"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "amet"], ["key", "amet"], ["created_at", "2016-01-27 21:23:26.176368"], ["updated_at", "2016-01-27 21:23:26.176368"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Concrete Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:23:26.180253"], ["updated_at", "2016-01-27 21:23:26.180253"]] SQL (0.2ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Concrete Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:23:26.183610"], ["updated_at", "2016-01-27 21:23:26.183610"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Steel Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:23:26.185599"], ["updated_at", "2016-01-27 21:23:26.185599"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Aluminum Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:23:26.187998"], ["updated_at", "2016-01-27 21:23:26.187998"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kameron Lemke II"], ["job_title", "District Data Strategist"], ["greetings", "Sit molestias provident aut similique et culpa aperiam."], ["summary", "Tempore illo corporis soluta eos consequatur. Ullam dolorum commodi inventore molestiae accusamus quo. Libero similique quisquam reiciendis minus. Molestias est sunt inventore."], ["key", "kameron_lemke_ii"], ["created_at", "2016-01-27 21:23:26.198371"], ["updated_at", "2016-01-27 21:23:26.198371"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Bronze Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:23:26.202968"], ["updated_at", "2016-01-27 21:23:26.202968"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Copper Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:23:26.205725"], ["updated_at", "2016-01-27 21:23:26.205725"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Gloves"], ["site_id", 1], ["created_at", "2016-01-27 21:23:26.207718"], ["updated_at", "2016-01-27 21:23:26.207718"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Silk Computer"], ["site_id", 1], ["created_at", "2016-01-27 21:23:26.209448"], ["updated_at", "2016-01-27 21:23:26.209448"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (229.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (295.9ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Julius Runolfsdottir"], ["job_title", "International Program Designer"], ["greetings", "Labore omnis ex dolorum quas et vel nostrum omnis."], ["summary", "Distinctio reiciendis provident quos qui consequatur asperiores. Voluptatem tempora et qui quo totam tenetur excepturi. Minus natus quibusdam amet sequi ratione ipsam eligendi."], ["key", "julius_runolfsdottir"], ["created_at", "2016-01-27 21:23:26.532737"], ["updated_at", "2016-01-27 21:23:26.532737"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Granite Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:23:26.538075"], ["updated_at", "2016-01-27 21:23:26.538075"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Leather Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:23:26.542887"], ["updated_at", "2016-01-27 21:23:26.542887"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Silk Computer"], ["site_id", 1], ["created_at", "2016-01-27 21:23:26.546883"], ["updated_at", "2016-01-27 21:23:26.546883"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Silk Table"], ["site_id", 1], ["created_at", "2016-01-27 21:23:26.550978"], ["updated_at", "2016-01-27 21:23:26.550978"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.0ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Thora King DVM"], ["job_title", "Customer Accountability Representative"], ["greetings", "Et sapiente ut reprehenderit quo at est eos."], ["summary", "Accusantium et suscipit dicta reiciendis et natus. Et ad consequatur fugit velit. Voluptatibus sed eum repellendus est."], ["key", "thora_king_dvm"], ["created_at", "2016-01-27 21:23:26.584477"], ["updated_at", "2016-01-27 21:23:26.584477"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "laboriosam"], ["key", "laboriosam"], ["created_at", "2016-01-27 21:23:26.589353"], ["updated_at", "2016-01-27 21:23:26.589353"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quae"], ["key", "quae"], ["created_at", "2016-01-27 21:23:26.591583"], ["updated_at", "2016-01-27 21:23:26.591583"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nostrum"], ["key", "nostrum"], ["created_at", "2016-01-27 21:23:26.593014"], ["updated_at", "2016-01-27 21:23:26.593014"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wooden Car"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:23:26.595990"], ["updated_at", "2016-01-27 21:23:26.595990"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wooden Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:23:26.599202"], ["updated_at", "2016-01-27 21:23:26.599202"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Marble Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:23:26.602424"], ["updated_at", "2016-01-27 21:23:26.602424"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Aluminum Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:23:26.604537"], ["updated_at", "2016-01-27 21:23:26.604537"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.6ms)  (0.3ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.2ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (6.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (17.8ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cheyenne Wilkinson"], ["job_title", "Corporate Paradigm Manager"], ["greetings", "Iusto sint iure qui est."], ["summary", "Quia sunt quidem dolorem autem. Quos eveniet enim consequatur. Et occaecati quam odit molestiae consequatur. Dolore ut temporibus reiciendis ut quibusdam cumque. Sequi distinctio et pariatur."], ["key", "cheyenne_wilkinson"], ["created_at", "2016-01-27 21:23:26.629787"], ["updated_at", "2016-01-27 21:23:26.629787"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nostrum"], ["key", "nostrum"], ["created_at", "2016-01-27 21:23:26.631977"], ["updated_at", "2016-01-27 21:23:26.631977"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sapiente"], ["key", "sapiente"], ["created_at", "2016-01-27 21:23:26.633843"], ["updated_at", "2016-01-27 21:23:26.633843"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "autem"], ["key", "autem"], ["created_at", "2016-01-27 21:23:26.637164"], ["updated_at", "2016-01-27 21:23:26.637164"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Marble Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:23:26.641811"], ["updated_at", "2016-01-27 21:23:26.641811"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Paper Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:23:26.646480"], ["updated_at", "2016-01-27 21:23:26.646480"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Copper Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:23:26.648921"], ["updated_at", "2016-01-27 21:23:26.648921"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Iron Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:23:26.650898"], ["updated_at", "2016-01-27 21:23:26.650898"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (12.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Rowan Connelly"], ["job_title", "Central Integration Director"], ["greetings", "Dolore voluptates fuga inventore esse dolor nostrum."], ["summary", "Quia dolores aut voluptas maxime. Qui illum totam aut vel. Eum et dolor laboriosam est consectetur. Sed sit soluta consequuntur omnis."], ["key", "rowan_connelly"], ["created_at", "2016-01-27 21:23:26.673397"], ["updated_at", "2016-01-27 21:23:26.673397"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (10.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aurelia Cummerata II"], ["job_title", "District Creative Facilitator"], ["greetings", "Illo dolores magnam qui quibusdam."], ["summary", "Quis alias dolorem sapiente sunt et esse. Omnis atque odio delectus recusandae qui. Soluta voluptatum necessitatibus. Error non ut aut vel. Inventore maiores assumenda qui illum quibusdam."], ["key", "aurelia_cummerata_ii"], ["created_at", "2016-01-27 21:23:26.702827"], ["updated_at", "2016-01-27 21:23:26.702827"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.3ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Anya O'Reilly"], ["job_title", "Investor Research Architect"], ["greetings", "Molestias corrupti earum laboriosam omnis voluptatem cupiditate."], ["summary", "Officiis exercitationem vitae. Sit excepturi commodi et. Accusamus numquam dolores soluta officiis quas ut voluptatum. Et ex velit odio quia quia."], ["key", "anya_o_reilly"], ["created_at", "2016-01-27 21:23:26.712239"], ["updated_at", "2016-01-27 21:23:26.712239"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eaque"], ["key", "eaque"], ["created_at", "2016-01-27 21:23:26.714665"], ["updated_at", "2016-01-27 21:23:26.714665"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "debitis"], ["key", "debitis"], ["created_at", "2016-01-27 21:23:26.716516"], ["updated_at", "2016-01-27 21:23:26.716516"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "numquam"], ["key", "numquam"], ["created_at", "2016-01-27 21:23:26.719915"], ["updated_at", "2016-01-27 21:23:26.719915"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Marble Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:23:26.723659"], ["updated_at", "2016-01-27 21:23:26.723659"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Silk Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:23:26.726802"], ["updated_at", "2016-01-27 21:23:26.726802"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Silk Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:23:26.729831"], ["updated_at", "2016-01-27 21:23:26.729831"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Wooden Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:23:26.731845"], ["updated_at", "2016-01-27 21:23:26.731845"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.5ms) Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (20.6ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kristofer Blanda DVM"], ["job_title", "Product Solutions Manager"], ["greetings", "Recusandae nisi nihil aliquid."], ["summary", "Cupiditate est sequi. Unde excepturi molestiae. Dolorum sint cupiditate magnam perspiciatis. Incidunt et qui."], ["key", "kristofer_blanda_dvm"], ["created_at", "2016-01-27 21:26:00.049438"], ["updated_at", "2016-01-27 21:26:00.049438"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:26:00.069436"], ["updated_at", "2016-01-27 21:26:00.069436"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Kylee Morar"], ["job_title", "Investor Configuration Assistant"], ["greetings", "Nemo voluptatum ut natus harum odit."], ["summary", "Dolorem ipsa totam commodi quo hic. Quia dolor deleniti explicabo in tenetur. Molestias minima illo et quisquam. Ipsum omnis fugiat maxime officiis et voluptatem et. Sit est dolor rerum voluptatem a eos sed."], ["key", "ms_kylee_morar"], ["created_at", "2016-01-27 21:26:00.075752"], ["updated_at", "2016-01-27 21:26:00.075752"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:26:00.078038"], ["updated_at", "2016-01-27 21:26:00.078038"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Maximillia Witting"], ["job_title", "National Division Director"], ["greetings", "Eaque quos explicabo cumque porro voluptatem facere fugit sint."], ["summary", "Ut qui quisquam fugit quia aut ab error. Placeat labore est dolor dicta animi. Quisquam modi labore cum aliquam blanditiis voluptas. A doloremque harum."], ["key", "maximillia_witting"], ["created_at", "2016-01-27 21:26:00.081096"], ["updated_at", "2016-01-27 21:26:00.081096"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:26:00.083004"], ["updated_at", "2016-01-27 21:26:00.083004"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Vickie Rohan"], ["job_title", "Product Tactics Supervisor"], ["greetings", "Et sit ut dolorum."], ["summary", "Rerum expedita non cumque. Autem molestiae ea. Et hic a est qui placeat necessitatibus velit."], ["key", "vickie_rohan"], ["created_at", "2016-01-27 21:26:00.091010"], ["updated_at", "2016-01-27 21:26:00.091010"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:26:00.093067"], ["updated_at", "2016-01-27 21:26:00.093067"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Giovanny Zieme"], ["job_title", "Dynamic Infrastructure Engineer"], ["greetings", "Ut qui non accusantium illum."], ["summary", "Officiis nam ut qui delectus ea. Ratione est dolorum nam laboriosam non vel non. Voluptatibus iure ab sequi rem reprehenderit praesentium. Laborum molestiae consequatur dolorum a ut eum perferendis."], ["key", "mr_giovanny_zieme"], ["created_at", "2016-01-27 21:26:00.098064"], ["updated_at", "2016-01-27 21:26:00.098064"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:26:00.100461"], ["updated_at", "2016-01-27 21:26:00.100461"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ernesto Gislason"], ["job_title", "Future Quality Director"], ["greetings", "Velit eum aut perferendis velit dolorem quod soluta."], ["summary", "Repellat voluptatem eveniet eum error. Animi laborum perspiciatis quibusdam in. Expedita molestias enim."], ["key", "ernesto_gislason"], ["created_at", "2016-01-27 21:26:00.104924"], ["updated_at", "2016-01-27 21:26:00.104924"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:26:00.107751"], ["updated_at", "2016-01-27 21:26:00.107751"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Curtis Feeney"], ["job_title", "Global Implementation Consultant"], ["greetings", "Tempore recusandae cupiditate reprehenderit qui animi exercitationem."], ["summary", "Sed recusandae ratione minima. Non iusto rem ut cupiditate fuga at. Consequatur vero consequatur tempora delectus. Id consectetur iure perspiciatis ea explicabo aut ullam."], ["key", "curtis_feeney"], ["created_at", "2016-01-27 21:26:00.113479"], ["updated_at", "2016-01-27 21:26:00.113479"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rem"], ["key", "rem"], ["created_at", "2016-01-27 21:26:00.118604"], ["updated_at", "2016-01-27 21:26:00.118604"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dignissimos"], ["key", "dignissimos"], ["created_at", "2016-01-27 21:26:00.120600"], ["updated_at", "2016-01-27 21:26:00.120600"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "soluta"], ["key", "soluta"], ["created_at", "2016-01-27 21:26:00.126884"], ["updated_at", "2016-01-27 21:26:00.126884"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:26:00.153001"], ["updated_at", "2016-01-27 21:26:00.153001"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Granite Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:26:00.158623"], ["updated_at", "2016-01-27 21:26:00.158623"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wool Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:26:00.161120"], ["updated_at", "2016-01-27 21:26:00.161120"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Silk Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:26:00.163430"], ["updated_at", "2016-01-27 21:26:00.163430"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "John Kozey Sr."], ["job_title", "Lead Metrics Officer"], ["greetings", "Et reiciendis dolore quasi voluptas expedita aut repellat."], ["summary", "Et eum quo possimus laudantium nulla voluptatem. Molestias sit ex. Modi et dolores ut enim deserunt. Soluta beatae omnis."], ["key", "john_kozey_sr"], ["created_at", "2016-01-27 21:26:00.184497"], ["updated_at", "2016-01-27 21:26:00.184497"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-27 21:26:00.186533"], ["updated_at", "2016-01-27 21:26:00.186533"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tempora"], ["key", "tempora"], ["created_at", "2016-01-27 21:26:00.188124"], ["updated_at", "2016-01-27 21:26:00.188124"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fuga"], ["key", "fuga"], ["created_at", "2016-01-27 21:26:00.189466"], ["updated_at", "2016-01-27 21:26:00.189466"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Linen Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:26:00.192921"], ["updated_at", "2016-01-27 21:26:00.192921"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wooden Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:26:00.196883"], ["updated_at", "2016-01-27 21:26:00.196883"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Steel Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:26:00.199061"], ["updated_at", "2016-01-27 21:26:00.199061"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Aluminum Car"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:26:00.201479"], ["updated_at", "2016-01-27 21:26:00.201479"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Euna Hintz III"], ["job_title", "Human Directives Manager"], ["greetings", "Atque aut inventore quia dolorum fugiat."], ["summary", "Qui quasi dolorem aut dolor sint commodi. Saepe amet asperiores iste repellat qui. Dolore deserunt eaque voluptatum."], ["key", "euna_hintz_iii"], ["created_at", "2016-01-27 21:26:00.213876"], ["updated_at", "2016-01-27 21:26:00.213876"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "enim"], ["key", "enim"], ["created_at", "2016-01-27 21:26:00.216138"], ["updated_at", "2016-01-27 21:26:00.216138"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 21:26:00.218765"], ["updated_at", "2016-01-27 21:26:00.218765"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consequatur"], ["key", "consequatur"], ["created_at", "2016-01-27 21:26:00.220526"], ["updated_at", "2016-01-27 21:26:00.220526"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Plastic Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:26:00.225750"], ["updated_at", "2016-01-27 21:26:00.225750"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Concrete Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:26:00.229782"], ["updated_at", "2016-01-27 21:26:00.229782"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Steel Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:26:00.231918"], ["updated_at", "2016-01-27 21:26:00.231918"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Iron Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:26:00.234073"], ["updated_at", "2016-01-27 21:26:00.234073"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ethelyn Williamson"], ["job_title", "Forward Directives Planner"], ["greetings", "Qui soluta in aliquam nesciunt molestiae animi."], ["summary", "Dolor ipsa nam quae quibusdam dolor rerum aliquam. Ut fugit officia velit eum reiciendis in voluptas. Quam corporis voluptas placeat ab dignissimos."], ["key", "ethelyn_williamson"], ["created_at", "2016-01-27 21:26:00.238179"], ["updated_at", "2016-01-27 21:26:00.238179"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ad"], ["key", "ad"], ["created_at", "2016-01-27 21:26:00.241286"], ["updated_at", "2016-01-27 21:26:00.241286"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "provident"], ["key", "provident"], ["created_at", "2016-01-27 21:26:00.243307"], ["updated_at", "2016-01-27 21:26:00.243307"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolore"], ["key", "dolore"], ["created_at", "2016-01-27 21:26:00.245042"], ["updated_at", "2016-01-27 21:26:00.245042"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Iron Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:26:00.248556"], ["updated_at", "2016-01-27 21:26:00.248556"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Steel Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:26:00.252080"], ["updated_at", "2016-01-27 21:26:00.252080"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Silk Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:26:00.254062"], ["updated_at", "2016-01-27 21:26:00.254062"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Bronze Car"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:26:00.255953"], ["updated_at", "2016-01-27 21:26:00.255953"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alice Bradtke"], ["job_title", "Central Paradigm Technician"], ["greetings", "Odio dolores qui harum iste doloremque."], ["summary", "Reiciendis eligendi vel et. Aut consequatur rerum et nostrum quaerat officia nihil. Praesentium distinctio temporibus pariatur. Libero corporis distinctio modi ad ducimus ea quia."], ["key", "alice_bradtke"], ["created_at", "2016-01-27 21:26:00.265418"], ["updated_at", "2016-01-27 21:26:00.265418"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Leather Pants"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:26:00.267912"], ["updated_at", "2016-01-27 21:26:00.267912"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Aluminum Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:26:00.270371"], ["updated_at", "2016-01-27 21:26:00.270371"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wooden Plate"], ["site_id", 1], ["created_at", "2016-01-27 21:26:00.273080"], ["updated_at", "2016-01-27 21:26:00.273080"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Silk Car"], ["site_id", 1], ["created_at", "2016-01-27 21:26:00.276581"], ["updated_at", "2016-01-27 21:26:00.276581"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (14.8ms) Portfolio::SiteItemCategory Load (0.5ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (226.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (293.5ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Garret Schmidt"], ["job_title", "Senior Communications Designer"], ["greetings", "Tempora voluptatibus necessitatibus qui nam."], ["summary", "Et delectus quibusdam sequi ut enim voluptas aut. Autem impedit non dolor quos. Nisi consequatur et voluptatum. Quae ut iusto iure consequuntur eos sit similique."], ["key", "miss_garret_schmidt"], ["created_at", "2016-01-27 21:26:00.594127"], ["updated_at", "2016-01-27 21:26:00.594127"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:26:00.599164"], ["updated_at", "2016-01-27 21:26:00.599164"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Marble Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:26:00.603807"], ["updated_at", "2016-01-27 21:26:00.603807"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Leather Computer"], ["site_id", 1], ["created_at", "2016-01-27 21:26:00.608257"], ["updated_at", "2016-01-27 21:26:00.608257"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Iron Table"], ["site_id", 1], ["created_at", "2016-01-27 21:26:00.613426"], ["updated_at", "2016-01-27 21:26:00.613426"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.1ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.9ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sonia Cremin"], ["job_title", "Product Markets Designer"], ["greetings", "Rem quod sunt consequatur ducimus quas accusantium autem."], ["summary", "Reprehenderit quam nihil sequi odit animi. Fugiat rerum quibusdam explicabo. Vel placeat quis quaerat quia hic sunt sed. Sapiente nihil aliquam ullam aut. Tempora minus non animi."], ["key", "sonia_cremin"], ["created_at", "2016-01-27 21:26:00.649679"], ["updated_at", "2016-01-27 21:26:00.649679"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quisquam"], ["key", "quisquam"], ["created_at", "2016-01-27 21:26:00.652600"], ["updated_at", "2016-01-27 21:26:00.652600"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iste"], ["key", "iste"], ["created_at", "2016-01-27 21:26:00.654802"], ["updated_at", "2016-01-27 21:26:00.654802"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolore"], ["key", "dolore"], ["created_at", "2016-01-27 21:26:00.656470"], ["updated_at", "2016-01-27 21:26:00.656470"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Granite Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:26:00.659837"], ["updated_at", "2016-01-27 21:26:00.659837"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Aluminum Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:26:00.662716"], ["updated_at", "2016-01-27 21:26:00.662716"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Linen Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:26:00.665372"], ["updated_at", "2016-01-27 21:26:00.665372"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Copper Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:26:00.667511"], ["updated_at", "2016-01-27 21:26:00.667511"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.2ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Carolyn Sawayn DVM"], ["job_title", "Chief Division Technician"], ["greetings", "Error asperiores fugit commodi et et aut tenetur nulla."], ["summary", "Ipsam dolor commodi saepe quidem hic. Ut libero et et ut. Aperiam modi enim et repudiandae facere. Molestiae repellendus inventore voluptatem cumque voluptatem."], ["key", "carolyn_sawayn_dvm"], ["created_at", "2016-01-27 21:26:00.688628"], ["updated_at", "2016-01-27 21:26:00.688628"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "vitae"], ["key", "vitae"], ["created_at", "2016-01-27 21:26:00.692794"], ["updated_at", "2016-01-27 21:26:00.692794"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "optio"], ["key", "optio"], ["created_at", "2016-01-27 21:26:00.695091"], ["updated_at", "2016-01-27 21:26:00.695091"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "earum"], ["key", "earum"], ["created_at", "2016-01-27 21:26:00.697148"], ["updated_at", "2016-01-27 21:26:00.697148"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wool Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:26:00.700383"], ["updated_at", "2016-01-27 21:26:00.700383"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Paper Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:26:00.703542"], ["updated_at", "2016-01-27 21:26:00.703542"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Iron Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:26:00.705651"], ["updated_at", "2016-01-27 21:26:00.705651"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Linen Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:26:00.708261"], ["updated_at", "2016-01-27 21:26:00.708261"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.4ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.5ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.5ms)  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (15.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Saul Paucek I"], ["job_title", "Global Applications Technician"], ["greetings", "Voluptas velit nostrum perspiciatis."], ["summary", "Nam natus rerum dolores magni voluptas et accusamus. Sapiente nam magni nesciunt animi dolores iusto aspernatur. Non delectus quisquam ab officiis ipsum. Voluptatibus a tempore."], ["key", "saul_paucek_i"], ["created_at", "2016-01-27 21:26:00.732539"], ["updated_at", "2016-01-27 21:26:00.732539"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (10.4ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Marcelino Daniel"], ["job_title", "Investor Communications Orchestrator"], ["greetings", "Qui qui placeat veritatis perspiciatis."], ["summary", "Voluptate aperiam pariatur eum perferendis fugit aut nisi. Animi sit vitae. Id voluptate sit. Magni ut quibusdam porro natus eius quia."], ["key", "mr_marcelino_daniel"], ["created_at", "2016-01-27 21:26:00.759753"], ["updated_at", "2016-01-27 21:26:00.759753"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.7ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Mollie Miller"], ["job_title", "Customer Response Assistant"], ["greetings", "Explicabo soluta rerum consequatur corporis nesciunt."], ["summary", "Voluptas commodi debitis quos excepturi odio. Officia amet quae quaerat. Est eum et. Ducimus ut est tempore odio. Cupiditate omnis et aspernatur at."], ["key", "ms_mollie_miller"], ["created_at", "2016-01-27 21:26:00.769284"], ["updated_at", "2016-01-27 21:26:00.769284"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cum"], ["key", "cum"], ["created_at", "2016-01-27 21:26:00.771617"], ["updated_at", "2016-01-27 21:26:00.771617"]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "in"], ["key", "in"], ["created_at", "2016-01-27 21:26:00.775080"], ["updated_at", "2016-01-27 21:26:00.775080"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "vero"], ["key", "vero"], ["created_at", "2016-01-27 21:26:00.777029"], ["updated_at", "2016-01-27 21:26:00.777029"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Linen Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:26:00.780866"], ["updated_at", "2016-01-27 21:26:00.780866"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Wool Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:26:00.784723"], ["updated_at", "2016-01-27 21:26:00.784723"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Copper Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:26:00.787001"], ["updated_at", "2016-01-27 21:26:00.787001"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Plastic Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:26:00.789113"], ["updated_at", "2016-01-27 21:26:00.789113"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.8ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (19.3ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Elizabeth Hyatt"], ["job_title", "Future Intranet Planner"], ["greetings", "Eveniet est repellendus veniam et."], ["summary", "Voluptatum iste aut ut libero sit repellendus qui. Inventore quam quod. Eum occaecati quis distinctio incidunt hic. Autem quos fuga facere ut aut recusandae. Illo sed sed repellat aut."], ["key", "mrs_elizabeth_hyatt"], ["created_at", "2016-01-27 21:30:29.059376"], ["updated_at", "2016-01-27 21:30:29.059376"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:30:29.078052"], ["updated_at", "2016-01-27 21:30:29.078052"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tyreek D'Amore"], ["job_title", "Human Solutions Technician"], ["greetings", "Ea facilis ullam temporibus id."], ["summary", "Itaque enim autem vel minus non sed est. Laudantium est autem amet totam sint blanditiis. Sunt ex ut eos dolorum veritatis rerum."], ["key", "tyreek_d_amore"], ["created_at", "2016-01-27 21:30:29.084136"], ["updated_at", "2016-01-27 21:30:29.084136"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:30:29.086230"], ["updated_at", "2016-01-27 21:30:29.086230"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Arno Batz"], ["job_title", "Forward Mobility Supervisor"], ["greetings", "Temporibus aperiam dolor laudantium et est."], ["summary", "Autem aut aperiam. Ipsam necessitatibus sit distinctio velit et dignissimos fugit. Dolore consequatur aut et consequuntur qui. Placeat sunt quia et quae."], ["key", "arno_batz"], ["created_at", "2016-01-27 21:30:29.090804"], ["updated_at", "2016-01-27 21:30:29.090804"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:30:29.093244"], ["updated_at", "2016-01-27 21:30:29.093244"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Earnestine Lockman"], ["job_title", "Investor Group Manager"], ["greetings", "Voluptatibus fuga corporis quas rerum rerum."], ["summary", "Minima deserunt perferendis delectus saepe doloremque. Dolor omnis qui eligendi ex quia sapiente. Qui amet commodi consequatur saepe. Non voluptas totam mollitia inventore consequuntur."], ["key", "earnestine_lockman"], ["created_at", "2016-01-27 21:30:29.100336"], ["updated_at", "2016-01-27 21:30:29.100336"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:30:29.102454"], ["updated_at", "2016-01-27 21:30:29.102454"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Candelario Christiansen"], ["job_title", "Regional Paradigm Officer"], ["greetings", "Odit facilis accusantium aut culpa velit quisquam doloribus."], ["summary", "Repellat nam voluptas quia itaque et eaque incidunt. Harum est ipsam deleniti dolor omnis. Natus quia porro sint quae ab. Perspiciatis odio eveniet. Voluptas dolorem sit at vero consequatur."], ["key", "candelario_christiansen"], ["created_at", "2016-01-27 21:30:29.107441"], ["updated_at", "2016-01-27 21:30:29.107441"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:30:29.109817"], ["updated_at", "2016-01-27 21:30:29.109817"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nathen White"], ["job_title", "Customer Identity Liaison"], ["greetings", "Voluptatibus perspiciatis quasi vel et rerum cumque veniam."], ["summary", "Quas aliquid delectus magnam quis. Laboriosam est adipisci ut aut ut. Odio quam voluptatem architecto dolor officiis."], ["key", "nathen_white"], ["created_at", "2016-01-27 21:30:29.114193"], ["updated_at", "2016-01-27 21:30:29.114193"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:30:29.116078"], ["updated_at", "2016-01-27 21:30:29.116078"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Trisha Dicki"], ["job_title", "Chief Research Orchestrator"], ["greetings", "Ut alias nisi ut error laboriosam numquam."], ["summary", "Doloremque repudiandae id ut amet velit asperiores. Modi nisi iure molestiae ipsam minus tenetur. Excepturi sunt ex fuga corrupti ut. Occaecati quia et possimus nam mollitia."], ["key", "trisha_dicki"], ["created_at", "2016-01-27 21:30:29.122612"], ["updated_at", "2016-01-27 21:30:29.122612"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "facilis"], ["key", "facilis"], ["created_at", "2016-01-27 21:30:29.127334"], ["updated_at", "2016-01-27 21:30:29.127334"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptates"], ["key", "voluptates"], ["created_at", "2016-01-27 21:30:29.129732"], ["updated_at", "2016-01-27 21:30:29.129732"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "beatae"], ["key", "beatae"], ["created_at", "2016-01-27 21:30:29.133766"], ["updated_at", "2016-01-27 21:30:29.133766"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Copper Computer"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:30:29.158213"], ["updated_at", "2016-01-27 21:30:29.158213"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Cotton Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:30:29.161761"], ["updated_at", "2016-01-27 21:30:29.161761"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Bronze Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:30:29.163990"], ["updated_at", "2016-01-27 21:30:29.163990"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Marble Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:30:29.165994"], ["updated_at", "2016-01-27 21:30:29.165994"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tressa Beatty"], ["job_title", "National Markets Strategist"], ["greetings", "Voluptas sint asperiores in."], ["summary", "Voluptas enim repellendus similique odit ullam vel fugiat. Aut mollitia animi voluptatum. Beatae mollitia voluptates saepe blanditiis."], ["key", "tressa_beatty"], ["created_at", "2016-01-27 21:30:29.189059"], ["updated_at", "2016-01-27 21:30:29.189059"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "esse"], ["key", "esse"], ["created_at", "2016-01-27 21:30:29.191616"], ["updated_at", "2016-01-27 21:30:29.191616"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "laborum"], ["key", "laborum"], ["created_at", "2016-01-27 21:30:29.193727"], ["updated_at", "2016-01-27 21:30:29.193727"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sed"], ["key", "sed"], ["created_at", "2016-01-27 21:30:29.195509"], ["updated_at", "2016-01-27 21:30:29.195509"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Cotton Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:30:29.198744"], ["updated_at", "2016-01-27 21:30:29.198744"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Plastic Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:30:29.201896"], ["updated_at", "2016-01-27 21:30:29.201896"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Copper Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:30:29.203802"], ["updated_at", "2016-01-27 21:30:29.203802"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Paper Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:30:29.206785"], ["updated_at", "2016-01-27 21:30:29.206785"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Blair Powlowski"], ["job_title", "Dynamic Directives Administrator"], ["greetings", "Aut vitae laudantium perferendis et animi fuga."], ["summary", "Ab totam assumenda laudantium nostrum asperiores. Quas doloremque aut modi consequuntur. Impedit similique voluptatem nostrum iure dolorem accusantium beatae."], ["key", "blair_powlowski"], ["created_at", "2016-01-27 21:30:29.217773"], ["updated_at", "2016-01-27 21:30:29.217773"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "hic"], ["key", "hic"], ["created_at", "2016-01-27 21:30:29.219722"], ["updated_at", "2016-01-27 21:30:29.219722"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "pariatur"], ["key", "pariatur"], ["created_at", "2016-01-27 21:30:29.221300"], ["updated_at", "2016-01-27 21:30:29.221300"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "omnis"], ["key", "omnis"], ["created_at", "2016-01-27 21:30:29.223148"], ["updated_at", "2016-01-27 21:30:29.223148"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Marble Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:30:29.226653"], ["updated_at", "2016-01-27 21:30:29.226653"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Cotton Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:30:29.230093"], ["updated_at", "2016-01-27 21:30:29.230093"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Plastic Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:30:29.231903"], ["updated_at", "2016-01-27 21:30:29.231903"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Rubber Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:30:29.233894"], ["updated_at", "2016-01-27 21:30:29.233894"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Coby Beahan"], ["job_title", "International Response Assistant"], ["greetings", "Qui laboriosam quod aut id possimus."], ["summary", "Corporis et maxime commodi vel et repellendus. Tempora ex quis sunt vero. Molestias maxime aut et placeat consectetur blanditiis. Ex numquam voluptates. Corrupti possimus repellendus."], ["key", "coby_beahan"], ["created_at", "2016-01-27 21:30:29.239668"], ["updated_at", "2016-01-27 21:30:29.239668"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fugit"], ["key", "fugit"], ["created_at", "2016-01-27 21:30:29.242218"], ["updated_at", "2016-01-27 21:30:29.242218"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 21:30:29.244830"], ["updated_at", "2016-01-27 21:30:29.244830"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "adipisci"], ["key", "adipisci"], ["created_at", "2016-01-27 21:30:29.247079"], ["updated_at", "2016-01-27 21:30:29.247079"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Plastic Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:30:29.251267"], ["updated_at", "2016-01-27 21:30:29.251267"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Cotton Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:30:29.254911"], ["updated_at", "2016-01-27 21:30:29.254911"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wool Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:30:29.256794"], ["updated_at", "2016-01-27 21:30:29.256794"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Aluminum Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:30:29.258576"], ["updated_at", "2016-01-27 21:30:29.258576"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ransom Thompson III"], ["job_title", "Internal Brand Strategist"], ["greetings", "Ut quo voluptatem consequuntur ut est dignissimos ducimus est."], ["summary", "Qui aut et perspiciatis earum odio aut ullam. Sit qui dolor fuga. Sit est sed qui ut nobis."], ["key", "ransom_thompson_iii"], ["created_at", "2016-01-27 21:30:29.266854"], ["updated_at", "2016-01-27 21:30:29.266854"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Plastic Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:30:29.269201"], ["updated_at", "2016-01-27 21:30:29.269201"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:30:29.271680"], ["updated_at", "2016-01-27 21:30:29.271680"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Paper Table"], ["site_id", 1], ["created_at", "2016-01-27 21:30:29.274500"], ["updated_at", "2016-01-27 21:30:29.274500"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Cotton Plate"], ["site_id", 1], ["created_at", "2016-01-27 21:30:29.276278"], ["updated_at", "2016-01-27 21:30:29.276278"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (14.7ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (231.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (296.1ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Pedro Orn"], ["job_title", "International Research Assistant"], ["greetings", "Natus nihil eligendi maxime distinctio iusto harum quia."], ["summary", "Sit aut molestias commodi. Voluptate inventore sapiente. Est nihil ut hic culpa optio maiores. Et est rerum expedita."], ["key", "miss_pedro_orn"], ["created_at", "2016-01-27 21:30:29.598353"], ["updated_at", "2016-01-27 21:30:29.598353"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wool Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:30:29.603049"], ["updated_at", "2016-01-27 21:30:29.603049"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Linen Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:30:29.607607"], ["updated_at", "2016-01-27 21:30:29.607607"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Iron Pants"], ["site_id", 1], ["created_at", "2016-01-27 21:30:29.612038"], ["updated_at", "2016-01-27 21:30:29.612038"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wooden Chair"], ["site_id", 1], ["created_at", "2016-01-27 21:30:29.616311"], ["updated_at", "2016-01-27 21:30:29.616311"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.6ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Murl Welch"], ["job_title", "Dynamic Data Engineer"], ["greetings", "Quod omnis accusamus ut facere."], ["summary", "Deleniti culpa sed id enim similique temporibus. Hic aut id omnis et animi ipsum. Aut aperiam eos quia. Aut est debitis recusandae esse laudantium. Doloremque perferendis cum eveniet molestias repudiandae."], ["key", "murl_welch"], ["created_at", "2016-01-27 21:30:29.649876"], ["updated_at", "2016-01-27 21:30:29.649876"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-27 21:30:29.654164"], ["updated_at", "2016-01-27 21:30:29.654164"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "non"], ["key", "non"], ["created_at", "2016-01-27 21:30:29.657722"], ["updated_at", "2016-01-27 21:30:29.657722"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nobis"], ["key", "nobis"], ["created_at", "2016-01-27 21:30:29.661421"], ["updated_at", "2016-01-27 21:30:29.661421"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wooden Car"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:30:29.665631"], ["updated_at", "2016-01-27 21:30:29.665631"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Plastic Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:30:29.669065"], ["updated_at", "2016-01-27 21:30:29.669065"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:30:29.671021"], ["updated_at", "2016-01-27 21:30:29.671021"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Silk Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:30:29.673269"], ["updated_at", "2016-01-27 21:30:29.673269"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (15.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Meta Kshlerin"], ["job_title", "International Intranet Officer"], ["greetings", "Omnis explicabo dolores ut enim aspernatur quia esse quo."], ["summary", "Qui optio est autem. Architecto ea sapiente facere. Voluptatibus expedita inventore. Quia cupiditate est natus. Eum a et dignissimos dolorum."], ["key", "meta_kshlerin"], ["created_at", "2016-01-27 21:30:29.697411"], ["updated_at", "2016-01-27 21:30:29.697411"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nihil"], ["key", "nihil"], ["created_at", "2016-01-27 21:30:29.700250"], ["updated_at", "2016-01-27 21:30:29.700250"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sed"], ["key", "sed"], ["created_at", "2016-01-27 21:30:29.702426"], ["updated_at", "2016-01-27 21:30:29.702426"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nostrum"], ["key", "nostrum"], ["created_at", "2016-01-27 21:30:29.704569"], ["updated_at", "2016-01-27 21:30:29.704569"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wool Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:30:29.707864"], ["updated_at", "2016-01-27 21:30:29.707864"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Plastic Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:30:29.711345"], ["updated_at", "2016-01-27 21:30:29.711345"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Marble Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:30:29.713424"], ["updated_at", "2016-01-27 21:30:29.713424"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wooden Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:30:29.715454"], ["updated_at", "2016-01-27 21:30:29.715454"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (15.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Sandrine Schaefer"], ["job_title", "Customer Usability Director"], ["greetings", "Voluptatem amet quo sint."], ["summary", "Enim libero eligendi dicta quam suscipit error. Atque labore sint ipsum eum sit veritatis. Repellat doloribus minima asperiores quisquam enim. Quaerat doloribus eligendi vitae omnis quia repellat."], ["key", "mr_sandrine_schaefer"], ["created_at", "2016-01-27 21:30:29.741058"], ["updated_at", "2016-01-27 21:30:29.741058"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (10.4ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Elvis Mraz Sr."], ["job_title", "Investor Markets Liaison"], ["greetings", "Ipsum incidunt saepe laudantium at accusantium voluptatum tempora."], ["summary", "At iste aut esse exercitationem. Labore velit dignissimos est voluptas. Ad quibusdam nostrum eos aliquam. Animi molestiae quia asperiores autem eaque maiores."], ["key", "elvis_mraz_sr"], ["created_at", "2016-01-27 21:30:29.768420"], ["updated_at", "2016-01-27 21:30:29.768420"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.7ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bud Schmeler"], ["job_title", "Regional Directives Associate"], ["greetings", "Sint sunt maiores laborum minima et in quae."], ["summary", "Omnis distinctio itaque architecto et ut aut. Odio suscipit rerum quas delectus esse eum soluta. Aperiam aspernatur nemo. Laudantium consequatur harum cumque non. Quia voluptas nemo."], ["key", "bud_schmeler"], ["created_at", "2016-01-27 21:30:29.778539"], ["updated_at", "2016-01-27 21:30:29.778539"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "odit"], ["key", "odit"], ["created_at", "2016-01-27 21:30:29.780505"], ["updated_at", "2016-01-27 21:30:29.780505"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "expedita"], ["key", "expedita"], ["created_at", "2016-01-27 21:30:29.782055"], ["updated_at", "2016-01-27 21:30:29.782055"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-27 21:30:29.783355"], ["updated_at", "2016-01-27 21:30:29.783355"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Linen Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:30:29.787815"], ["updated_at", "2016-01-27 21:30:29.787815"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Rubber Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:30:29.792073"], ["updated_at", "2016-01-27 21:30:29.792073"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Paper Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:30:29.794546"], ["updated_at", "2016-01-27 21:30:29.794546"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Rubber Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:30:29.796803"], ["updated_at", "2016-01-27 21:30:29.796803"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (3.7ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.4ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tobin Heaney"], ["job_title", "International Accountability Facilitator"], ["greetings", "Doloremque molestiae sunt nostrum debitis temporibus."], ["summary", "Mollitia alias dolor neque officia cupiditate modi. Ratione enim esse. Commodi accusamus quia ea sit dolor non placeat."], ["key", "tobin_heaney"], ["created_at", "2016-01-27 21:30:59.574591"], ["updated_at", "2016-01-27 21:30:59.574591"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:30:59.592698"], ["updated_at", "2016-01-27 21:30:59.592698"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Marcos Metz"], ["job_title", "Legacy Markets Manager"], ["greetings", "Voluptates animi iure sit aut."], ["summary", "Corrupti qui aliquam. Nihil qui odio enim qui nam non cumque. Amet eveniet id minus."], ["key", "marcos_metz"], ["created_at", "2016-01-27 21:30:59.598765"], ["updated_at", "2016-01-27 21:30:59.598765"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:30:59.601099"], ["updated_at", "2016-01-27 21:30:59.601099"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dangelo Heidenreich"], ["job_title", "Internal Infrastructure Analyst"], ["greetings", "Magni autem aut laborum est ea ut."], ["summary", "Amet ad nihil. Et rerum beatae sit et similique quia. Aut illum itaque."], ["key", "dangelo_heidenreich"], ["created_at", "2016-01-27 21:30:59.604343"], ["updated_at", "2016-01-27 21:30:59.604343"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:30:59.606181"], ["updated_at", "2016-01-27 21:30:59.606181"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Evan Hoeger"], ["job_title", "District Communications Officer"], ["greetings", "Voluptates nihil velit provident sit quo."], ["summary", "Hic facilis doloribus. Provident ipsa ea odit et impedit vitae qui. At est deserunt. Sed labore quaerat non quis nulla molestiae. Voluptatem magnam dolorem pariatur vel odio animi velit."], ["key", "evan_hoeger"], ["created_at", "2016-01-27 21:30:59.612979"], ["updated_at", "2016-01-27 21:30:59.612979"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:30:59.614923"], ["updated_at", "2016-01-27 21:30:59.614923"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Otis Block I"], ["job_title", "Forward Accounts Manager"], ["greetings", "Voluptatum quis est ut nemo qui."], ["summary", "Temporibus laudantium aliquam repellat. Temporibus sint optio. Quo deserunt delectus ipsum laudantium ratione nihil."], ["key", "otis_block_i"], ["created_at", "2016-01-27 21:30:59.619249"], ["updated_at", "2016-01-27 21:30:59.619249"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:30:59.621855"], ["updated_at", "2016-01-27 21:30:59.621855"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Desiree McDermott"], ["job_title", "Investor Paradigm Designer"], ["greetings", "Perspiciatis qui eum quia eius temporibus iste autem dolores."], ["summary", "Ad nobis rerum. Beatae voluptates eius facilis et impedit quia et. Quo consequatur quod sunt. Praesentium omnis et. Nisi ducimus omnis consequuntur veniam eum quis."], ["key", "desiree_mcdermott"], ["created_at", "2016-01-27 21:30:59.626030"], ["updated_at", "2016-01-27 21:30:59.626030"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:30:59.627945"], ["updated_at", "2016-01-27 21:30:59.627945"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Kailey Cremin"], ["job_title", "Future Directives Assistant"], ["greetings", "Ipsam commodi sunt soluta fugiat repellendus."], ["summary", "Adipisci laboriosam quasi. Pariatur qui praesentium non voluptas. Fuga quam recusandae."], ["key", "mrs_kailey_cremin"], ["created_at", "2016-01-27 21:30:59.633526"], ["updated_at", "2016-01-27 21:30:59.633526"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iure"], ["key", "iure"], ["created_at", "2016-01-27 21:30:59.640211"], ["updated_at", "2016-01-27 21:30:59.640211"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aliquid"], ["key", "aliquid"], ["created_at", "2016-01-27 21:30:59.642453"], ["updated_at", "2016-01-27 21:30:59.642453"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nemo"], ["key", "nemo"], ["created_at", "2016-01-27 21:30:59.646644"], ["updated_at", "2016-01-27 21:30:59.646644"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Paper Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:30:59.671259"], ["updated_at", "2016-01-27 21:30:59.671259"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wooden Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:30:59.674483"], ["updated_at", "2016-01-27 21:30:59.674483"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Iron Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:30:59.676487"], ["updated_at", "2016-01-27 21:30:59.676487"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wool Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:30:59.678285"], ["updated_at", "2016-01-27 21:30:59.678285"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Ezequiel Pagac"], ["job_title", "Customer Directives Technician"], ["greetings", "Et omnis possimus nobis."], ["summary", "Dicta quibusdam libero non cum assumenda aliquam nisi. Dicta modi sed ab aut et sit. Accusamus incidunt ipsum. Aut et nostrum. Inventore nam molestiae excepturi fugiat."], ["key", "dr_ezequiel_pagac"], ["created_at", "2016-01-27 21:30:59.699228"], ["updated_at", "2016-01-27 21:30:59.699228"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sunt"], ["key", "sunt"], ["created_at", "2016-01-27 21:30:59.701215"], ["updated_at", "2016-01-27 21:30:59.701215"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "velit"], ["key", "velit"], ["created_at", "2016-01-27 21:30:59.702797"], ["updated_at", "2016-01-27 21:30:59.702797"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "exercitationem"], ["key", "exercitationem"], ["created_at", "2016-01-27 21:30:59.704503"], ["updated_at", "2016-01-27 21:30:59.704503"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Silk Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:30:59.707933"], ["updated_at", "2016-01-27 21:30:59.707933"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Aluminum Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:30:59.710906"], ["updated_at", "2016-01-27 21:30:59.710906"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Silk Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:30:59.713008"], ["updated_at", "2016-01-27 21:30:59.713008"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:30:59.714930"], ["updated_at", "2016-01-27 21:30:59.714930"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Henriette Wilderman"], ["job_title", "Senior Accountability Assistant"], ["greetings", "Nemo officiis aspernatur inventore."], ["summary", "In ducimus voluptatem architecto unde cupiditate. Sint distinctio non qui officiis. Officia dolore illo alias illum et et optio. Sit dolorum soluta eaque voluptatibus. Quo est pariatur ut enim accusamus."], ["key", "henriette_wilderman"], ["created_at", "2016-01-27 21:30:59.725971"], ["updated_at", "2016-01-27 21:30:59.725971"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "officia"], ["key", "officia"], ["created_at", "2016-01-27 21:30:59.728000"], ["updated_at", "2016-01-27 21:30:59.728000"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "odit"], ["key", "odit"], ["created_at", "2016-01-27 21:30:59.729657"], ["updated_at", "2016-01-27 21:30:59.729657"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "facilis"], ["key", "facilis"], ["created_at", "2016-01-27 21:30:59.730970"], ["updated_at", "2016-01-27 21:30:59.730970"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Concrete Car"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:30:59.734627"], ["updated_at", "2016-01-27 21:30:59.734627"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Steel Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:30:59.739336"], ["updated_at", "2016-01-27 21:30:59.739336"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Wool Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:30:59.741540"], ["updated_at", "2016-01-27 21:30:59.741540"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Aluminum Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:30:59.743630"], ["updated_at", "2016-01-27 21:30:59.743630"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Frank Kshlerin"], ["job_title", "Dynamic Quality Agent"], ["greetings", "Doloremque veniam qui consequatur."], ["summary", "Velit deleniti sed ut voluptatem sint. Nisi et ipsum. Enim repellendus at. Fugit totam repudiandae voluptatum."], ["key", "frank_kshlerin"], ["created_at", "2016-01-27 21:30:59.747711"], ["updated_at", "2016-01-27 21:30:59.747711"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 21:30:59.749622"], ["updated_at", "2016-01-27 21:30:59.749622"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fuga"], ["key", "fuga"], ["created_at", "2016-01-27 21:30:59.751293"], ["updated_at", "2016-01-27 21:30:59.751293"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nihil"], ["key", "nihil"], ["created_at", "2016-01-27 21:30:59.752706"], ["updated_at", "2016-01-27 21:30:59.752706"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Wooden Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:30:59.756678"], ["updated_at", "2016-01-27 21:30:59.756678"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Paper Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:30:59.759731"], ["updated_at", "2016-01-27 21:30:59.759731"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Cotton Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:30:59.761947"], ["updated_at", "2016-01-27 21:30:59.761947"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Wooden Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:30:59.763860"], ["updated_at", "2016-01-27 21:30:59.763860"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Cortez Wehner"], ["job_title", "Future Interactions Representative"], ["greetings", "Iusto quis odio explicabo."], ["summary", "Quis ducimus officia occaecati rerum voluptas blanditiis. Non ut in. Est veniam sit aliquid odit explicabo nostrum odio."], ["key", "mr_cortez_wehner"], ["created_at", "2016-01-27 21:30:59.771185"], ["updated_at", "2016-01-27 21:30:59.771185"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Linen Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:30:59.773825"], ["updated_at", "2016-01-27 21:30:59.773825"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Marble Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:30:59.776310"], ["updated_at", "2016-01-27 21:30:59.776310"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Leather Knife"], ["site_id", 1], ["created_at", "2016-01-27 21:30:59.778360"], ["updated_at", "2016-01-27 21:30:59.778360"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Leather Plate"], ["site_id", 1], ["created_at", "2016-01-27 21:30:59.780412"], ["updated_at", "2016-01-27 21:30:59.780412"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.4ms) Portfolio::SiteItemCategory Load (0.3ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (231.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (302.5ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Rocio Breitenberg"], ["job_title", "Principal Web Specialist"], ["greetings", "Autem cumque sit ratione."], ["summary", "Autem velit distinctio eius quisquam temporibus vel. Cum dolorem dolorem. Fugiat magni vel quibusdam magnam vitae."], ["key", "rocio_breitenberg"], ["created_at", "2016-01-27 21:31:00.108405"], ["updated_at", "2016-01-27 21:31:00.108405"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Copper Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:31:00.113465"], ["updated_at", "2016-01-27 21:31:00.113465"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Granite Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:31:00.117793"], ["updated_at", "2016-01-27 21:31:00.117793"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Iron Car"], ["site_id", 1], ["created_at", "2016-01-27 21:31:00.121764"], ["updated_at", "2016-01-27 21:31:00.121764"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wool Clock"], ["site_id", 1], ["created_at", "2016-01-27 21:31:00.125959"], ["updated_at", "2016-01-27 21:31:00.125959"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.2ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (19.0ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jairo Cremin"], ["job_title", "Regional Applications Technician"], ["greetings", "Esse nesciunt et est dolore nam a."], ["summary", "Voluptas incidunt quia facere. Est unde laudantium quis cumque sed. Quia sint eligendi. Aut delectus non dolorum quia corporis. Esse aut mollitia."], ["key", "jairo_cremin"], ["created_at", "2016-01-27 21:31:00.153692"], ["updated_at", "2016-01-27 21:31:00.153692"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quo"], ["key", "quo"], ["created_at", "2016-01-27 21:31:00.157796"], ["updated_at", "2016-01-27 21:31:00.157796"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptas"], ["key", "voluptas"], ["created_at", "2016-01-27 21:31:00.159764"], ["updated_at", "2016-01-27 21:31:00.159764"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 21:31:00.161939"], ["updated_at", "2016-01-27 21:31:00.161939"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Steel Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:31:00.165179"], ["updated_at", "2016-01-27 21:31:00.165179"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Linen Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:31:00.168281"], ["updated_at", "2016-01-27 21:31:00.168281"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Leather Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:31:00.170694"], ["updated_at", "2016-01-27 21:31:00.170694"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Rubber Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:31:00.172800"], ["updated_at", "2016-01-27 21:31:00.172800"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.4ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.4ms) Portfolio::SiteItemCategory Load (0.3ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cassidy Quitzon"], ["job_title", "Corporate Functionality Supervisor"], ["greetings", "Dolor et voluptatem eos."], ["summary", "Quam eos asperiores. Eius perferendis enim. Sint hic nam sunt quia. Voluptatibus itaque repudiandae rerum quam sit non consequatur."], ["key", "cassidy_quitzon"], ["created_at", "2016-01-27 21:31:00.194745"], ["updated_at", "2016-01-27 21:31:00.194745"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "id"], ["key", "id"], ["created_at", "2016-01-27 21:31:00.196715"], ["updated_at", "2016-01-27 21:31:00.196715"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "facere"], ["key", "facere"], ["created_at", "2016-01-27 21:31:00.198219"], ["updated_at", "2016-01-27 21:31:00.198219"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsa"], ["key", "ipsa"], ["created_at", "2016-01-27 21:31:00.200739"], ["updated_at", "2016-01-27 21:31:00.200739"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Concrete Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:31:00.204584"], ["updated_at", "2016-01-27 21:31:00.204584"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Iron Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:31:00.208443"], ["updated_at", "2016-01-27 21:31:00.208443"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Bronze Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:31:00.210502"], ["updated_at", "2016-01-27 21:31:00.210502"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Silk Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:31:00.212345"], ["updated_at", "2016-01-27 21:31:00.212345"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.7ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (15.0ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tomas Kuphal"], ["job_title", "Dynamic Solutions Agent"], ["greetings", "Occaecati amet laborum dolorum est ipsa repudiandae sunt."], ["summary", "Asperiores consectetur eaque ab omnis odio nulla labore. Saepe dolore quis. Et amet animi. Rem ex repellendus a aut quasi voluptatum molestiae."], ["key", "tomas_kuphal"], ["created_at", "2016-01-27 21:31:00.234192"], ["updated_at", "2016-01-27 21:31:00.234192"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (10.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Modesto Morar"], ["job_title", "Internal Operations Planner"], ["greetings", "Et rerum quasi beatae est."], ["summary", "Eaque est pariatur est iure magnam. Doloribus ipsam a eum suscipit repellendus laboriosam. Ipsum dolorem officiis officia sequi qui molestiae. Autem deserunt ea excepturi rem aspernatur. Delectus eos ut reprehenderit fugit et eos."], ["key", "modesto_morar"], ["created_at", "2016-01-27 21:31:00.261812"], ["updated_at", "2016-01-27 21:31:00.261812"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.7ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Genesis Ondricka"], ["job_title", "Future Security Technician"], ["greetings", "Ut nostrum voluptatem et ipsam aut vero."], ["summary", "Unde et distinctio qui debitis est odio corrupti. Nulla blanditiis eveniet. Quis consequatur rerum velit sequi qui rem in. Aliquid ipsam sed dolor id rerum labore. Id totam expedita in minima eaque voluptas."], ["key", "genesis_ondricka"], ["created_at", "2016-01-27 21:31:00.270638"], ["updated_at", "2016-01-27 21:31:00.270638"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "impedit"], ["key", "impedit"], ["created_at", "2016-01-27 21:31:00.274415"], ["updated_at", "2016-01-27 21:31:00.274415"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "perferendis"], ["key", "perferendis"], ["created_at", "2016-01-27 21:31:00.276101"], ["updated_at", "2016-01-27 21:31:00.276101"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-27 21:31:00.277458"], ["updated_at", "2016-01-27 21:31:00.277458"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Steel Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:31:00.280342"], ["updated_at", "2016-01-27 21:31:00.280342"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Paper Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:31:00.283287"], ["updated_at", "2016-01-27 21:31:00.283287"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Marble Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:31:00.286843"], ["updated_at", "2016-01-27 21:31:00.286843"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Steel Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:31:00.289128"], ["updated_at", "2016-01-27 21:31:00.289128"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.8ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (19.3ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Enola Streich"], ["job_title", "Dynamic Markets Orchestrator"], ["greetings", "Delectus molestiae quo labore."], ["summary", "Aut corporis qui amet iste quod. Aut explicabo et dolore optio. Velit rerum dolore. Non cumque amet veritatis sit dolor voluptatem."], ["key", "enola_streich"], ["created_at", "2016-01-27 21:31:13.180543"], ["updated_at", "2016-01-27 21:31:13.180543"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:31:13.198179"], ["updated_at", "2016-01-27 21:31:13.198179"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Roderick Kilback II"], ["job_title", "Central Infrastructure Planner"], ["greetings", "Sed qui impedit qui optio repudiandae a non quia."], ["summary", "Accusantium quos nemo ducimus repellat aut qui ullam. Consectetur quo rem et nemo vero ut. Voluptas minima et rerum et."], ["key", "roderick_kilback_ii"], ["created_at", "2016-01-27 21:31:13.204149"], ["updated_at", "2016-01-27 21:31:13.204149"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:31:13.206470"], ["updated_at", "2016-01-27 21:31:13.206470"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jamaal Konopelski"], ["job_title", "Chief Brand Producer"], ["greetings", "Beatae dolore distinctio illum esse dolorem perferendis consequuntur natus."], ["summary", "Eveniet molestiae occaecati libero quia. Harum voluptate laborum quas sint sit odio non. Nihil sint qui exercitationem quia necessitatibus quo vitae. Nihil dolore aut qui laudantium voluptatem et nam. Veniam culpa nam accusantium earum quas ab numquam."], ["key", "jamaal_konopelski"], ["created_at", "2016-01-27 21:31:13.210340"], ["updated_at", "2016-01-27 21:31:13.210340"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:31:13.212268"], ["updated_at", "2016-01-27 21:31:13.212268"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sarah Yost"], ["job_title", "Corporate Interactions Orchestrator"], ["greetings", "Beatae mollitia aspernatur ea rerum corporis assumenda et."], ["summary", "Adipisci consectetur nulla enim. Cupiditate minus sequi dolorum quis quasi doloribus. Aspernatur similique laborum fuga maxime natus quis."], ["key", "sarah_yost"], ["created_at", "2016-01-27 21:31:13.220376"], ["updated_at", "2016-01-27 21:31:13.220376"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:31:13.222409"], ["updated_at", "2016-01-27 21:31:13.222409"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Angie Leffler"], ["job_title", "Dynamic Accountability Associate"], ["greetings", "Dolor deleniti est voluptatum doloribus accusamus dignissimos."], ["summary", "Voluptatum adipisci fuga. Assumenda et quis. Blanditiis numquam voluptatem fugiat ut. Soluta sit eos ullam quia reprehenderit quidem."], ["key", "dr_angie_leffler"], ["created_at", "2016-01-27 21:31:13.226377"], ["updated_at", "2016-01-27 21:31:13.226377"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:31:13.228598"], ["updated_at", "2016-01-27 21:31:13.228598"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Leslie Wiegand II"], ["job_title", "Corporate Brand Representative"], ["greetings", "Laudantium quia asperiores aliquid aut."], ["summary", "Ex et facere fuga. Non inventore excepturi reiciendis exercitationem facilis. In earum rerum."], ["key", "leslie_wiegand_ii"], ["created_at", "2016-01-27 21:31:13.232704"], ["updated_at", "2016-01-27 21:31:13.232704"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:31:13.234797"], ["updated_at", "2016-01-27 21:31:13.234797"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Verda Hilll"], ["job_title", "National Intranet Administrator"], ["greetings", "Accusamus aut consectetur quia architecto."], ["summary", "Voluptas quod cum enim qui. Laborum nam rerum eos eum quia ducimus dolor. Placeat eveniet nulla velit eligendi. Quidem esse consequatur sit autem veniam."], ["key", "verda_hilll"], ["created_at", "2016-01-27 21:31:13.240213"], ["updated_at", "2016-01-27 21:31:13.240213"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sint"], ["key", "sint"], ["created_at", "2016-01-27 21:31:13.246484"], ["updated_at", "2016-01-27 21:31:13.246484"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-27 21:31:13.249201"], ["updated_at", "2016-01-27 21:31:13.249201"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "recusandae"], ["key", "recusandae"], ["created_at", "2016-01-27 21:31:13.256143"], ["updated_at", "2016-01-27 21:31:13.256143"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Granite Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:31:13.279166"], ["updated_at", "2016-01-27 21:31:13.279166"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:31:13.282340"], ["updated_at", "2016-01-27 21:31:13.282340"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Steel Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:31:13.285836"], ["updated_at", "2016-01-27 21:31:13.285836"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Silk Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:31:13.287819"], ["updated_at", "2016-01-27 21:31:13.287819"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jude Hagenes"], ["job_title", "Forward Markets Specialist"], ["greetings", "Dignissimos eius illo sit maxime quis."], ["summary", "Et delectus voluptate ea nulla. Debitis enim consectetur. Cumque facere sunt hic esse eos. Error nemo omnis quaerat voluptas accusantium iste. In quis eligendi."], ["key", "jude_hagenes"], ["created_at", "2016-01-27 21:31:13.309030"], ["updated_at", "2016-01-27 21:31:13.309030"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-27 21:31:13.311288"], ["updated_at", "2016-01-27 21:31:13.311288"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tempore"], ["key", "tempore"], ["created_at", "2016-01-27 21:31:13.313074"], ["updated_at", "2016-01-27 21:31:13.313074"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cum"], ["key", "cum"], ["created_at", "2016-01-27 21:31:13.314417"], ["updated_at", "2016-01-27 21:31:13.314417"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Linen Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:31:13.318323"], ["updated_at", "2016-01-27 21:31:13.318323"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Plastic Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:31:13.321457"], ["updated_at", "2016-01-27 21:31:13.321457"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Granite Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:31:13.323408"], ["updated_at", "2016-01-27 21:31:13.323408"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Cotton Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:31:13.325277"], ["updated_at", "2016-01-27 21:31:13.325277"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aiden Becker"], ["job_title", "District Research Representative"], ["greetings", "Ea laudantium impedit sit sunt ipsam."], ["summary", "Expedita cum voluptatibus voluptate sit. Voluptatibus ad magni repellat porro enim autem. Velit neque odio."], ["key", "aiden_becker"], ["created_at", "2016-01-27 21:31:13.335317"], ["updated_at", "2016-01-27 21:31:13.335317"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 21:31:13.337347"], ["updated_at", "2016-01-27 21:31:13.337347"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "enim"], ["key", "enim"], ["created_at", "2016-01-27 21:31:13.338958"], ["updated_at", "2016-01-27 21:31:13.338958"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "esse"], ["key", "esse"], ["created_at", "2016-01-27 21:31:13.340297"], ["updated_at", "2016-01-27 21:31:13.340297"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Computer"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:31:13.344100"], ["updated_at", "2016-01-27 21:31:13.344100"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Granite Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:31:13.348313"], ["updated_at", "2016-01-27 21:31:13.348313"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:31:13.352103"], ["updated_at", "2016-01-27 21:31:13.352103"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wooden Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:31:13.354329"], ["updated_at", "2016-01-27 21:31:13.354329"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Chandler Waelchi"], ["job_title", "Product Program Consultant"], ["greetings", "Placeat reiciendis voluptatem dolorem eos enim."], ["summary", "Doloremque voluptatem repellendus accusantium quaerat quod. Nihil et blanditiis quisquam error minima. Ut porro numquam quaerat blanditiis ipsa reiciendis. Quae nobis pariatur."], ["key", "chandler_waelchi"], ["created_at", "2016-01-27 21:31:13.359463"], ["updated_at", "2016-01-27 21:31:13.359463"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "harum"], ["key", "harum"], ["created_at", "2016-01-27 21:31:13.362838"], ["updated_at", "2016-01-27 21:31:13.362838"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eum"], ["key", "eum"], ["created_at", "2016-01-27 21:31:13.365794"], ["updated_at", "2016-01-27 21:31:13.365794"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "possimus"], ["key", "possimus"], ["created_at", "2016-01-27 21:31:13.368472"], ["updated_at", "2016-01-27 21:31:13.368472"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Copper Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:31:13.372931"], ["updated_at", "2016-01-27 21:31:13.372931"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Steel Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:31:13.376172"], ["updated_at", "2016-01-27 21:31:13.376172"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Granite Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:31:13.378090"], ["updated_at", "2016-01-27 21:31:13.378090"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Rubber Car"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:31:13.379928"], ["updated_at", "2016-01-27 21:31:13.379928"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aracely Pacocha I"], ["job_title", "Future Interactions Specialist"], ["greetings", "Ea omnis corporis inventore nostrum ut."], ["summary", "Ab quia esse aut ipsa vero. Excepturi doloremque unde ut eius. Sit illum facilis eos et. Incidunt atque veritatis molestias."], ["key", "aracely_pacocha_i"], ["created_at", "2016-01-27 21:31:13.388265"], ["updated_at", "2016-01-27 21:31:13.388265"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (1.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Steel Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:31:13.391010"], ["updated_at", "2016-01-27 21:31:13.391010"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Iron Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:31:13.395366"], ["updated_at", "2016-01-27 21:31:13.395366"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Rubber Bench"], ["site_id", 1], ["created_at", "2016-01-27 21:31:13.397959"], ["updated_at", "2016-01-27 21:31:13.397959"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wool Clock"], ["site_id", 1], ["created_at", "2016-01-27 21:31:13.402328"], ["updated_at", "2016-01-27 21:31:13.402328"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (4.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (16.0ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (225.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (295.0ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nickolas Haley"], ["job_title", "Future Markets Developer"], ["greetings", "Fuga animi optio non rem deserunt sint."], ["summary", "Facilis quisquam iste dolor quos culpa sed. Repellendus dolor illum inventore ea ipsam. Voluptatum numquam voluptatem. Ratione quia in earum dolorem suscipit rerum."], ["key", "nickolas_haley"], ["created_at", "2016-01-27 21:31:13.723386"], ["updated_at", "2016-01-27 21:31:13.723386"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Leather Wallet"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:31:13.728410"], ["updated_at", "2016-01-27 21:31:13.728410"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Steel Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:31:13.732963"], ["updated_at", "2016-01-27 21:31:13.732963"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Plastic Clock"], ["site_id", 1], ["created_at", "2016-01-27 21:31:13.737047"], ["updated_at", "2016-01-27 21:31:13.737047"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wooden Bag"], ["site_id", 1], ["created_at", "2016-01-27 21:31:13.741420"], ["updated_at", "2016-01-27 21:31:13.741420"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.3ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nya Schneider"], ["job_title", "National Paradigm Manager"], ["greetings", "Incidunt voluptates nesciunt dolorem officiis."], ["summary", "Quaerat et sed consequatur vitae neque odio dolor. Accusamus sunt reiciendis. Officia repellat minus libero recusandae."], ["key", "nya_schneider"], ["created_at", "2016-01-27 21:31:13.775186"], ["updated_at", "2016-01-27 21:31:13.775186"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "delectus"], ["key", "delectus"], ["created_at", "2016-01-27 21:31:13.779442"], ["updated_at", "2016-01-27 21:31:13.779442"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "necessitatibus"], ["key", "necessitatibus"], ["created_at", "2016-01-27 21:31:13.783046"], ["updated_at", "2016-01-27 21:31:13.783046"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "architecto"], ["key", "architecto"], ["created_at", "2016-01-27 21:31:13.786522"], ["updated_at", "2016-01-27 21:31:13.786522"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Iron Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:31:13.793817"], ["updated_at", "2016-01-27 21:31:13.793817"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wooden Watch"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:31:13.800389"], ["updated_at", "2016-01-27 21:31:13.800389"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Rubber Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:31:13.803644"], ["updated_at", "2016-01-27 21:31:13.803644"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Rubber Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:31:13.806287"], ["updated_at", "2016-01-27 21:31:13.806287"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.4ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kaya Wiza"], ["job_title", "District Usability Engineer"], ["greetings", "Unde nesciunt voluptas id voluptas ipsa."], ["summary", "Ea nihil nesciunt mollitia placeat et officia. Repellendus earum voluptas laborum. Voluptas rerum est officia consectetur ut molestiae. Recusandae eveniet accusantium ea quidem quia."], ["key", "kaya_wiza"], ["created_at", "2016-01-27 21:31:13.827583"], ["updated_at", "2016-01-27 21:31:13.827583"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "saepe"], ["key", "saepe"], ["created_at", "2016-01-27 21:31:13.829734"], ["updated_at", "2016-01-27 21:31:13.829734"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quod"], ["key", "quod"], ["created_at", "2016-01-27 21:31:13.831367"], ["updated_at", "2016-01-27 21:31:13.831367"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "illo"], ["key", "illo"], ["created_at", "2016-01-27 21:31:13.833184"], ["updated_at", "2016-01-27 21:31:13.833184"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Iron Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:31:13.836911"], ["updated_at", "2016-01-27 21:31:13.836911"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Cotton Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:31:13.840065"], ["updated_at", "2016-01-27 21:31:13.840065"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Plastic Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:31:13.842305"], ["updated_at", "2016-01-27 21:31:13.842305"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Granite Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:31:13.844305"], ["updated_at", "2016-01-27 21:31:13.844305"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.3ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.2ms) Portfolio::SiteItemCategory Load (0.4ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Justine Sporer"], ["job_title", "Investor Implementation Manager"], ["greetings", "Sunt sint aspernatur alias quis."], ["summary", "Adipisci et omnis sed nihil id magni est. Ut eum nihil molestiae velit iure fuga. Officiis et laboriosam consequatur cum."], ["key", "justine_sporer"], ["created_at", "2016-01-27 21:31:13.865168"], ["updated_at", "2016-01-27 21:31:13.865168"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (9.8ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aurore Thiel III"], ["job_title", "Direct Research Analyst"], ["greetings", "Repellendus quos sapiente adipisci officiis vel non."], ["summary", "Dolor voluptatem quas voluptates alias. Excepturi laudantium enim nihil maxime fuga. Dolorem iusto ea et. Velit et debitis provident cumque consequatur porro eos. Odio reiciendis et."], ["key", "aurore_thiel_iii"], ["created_at", "2016-01-27 21:31:13.893179"], ["updated_at", "2016-01-27 21:31:13.893179"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.8ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Hiram Brekke MD"], ["job_title", "Principal Intranet Assistant"], ["greetings", "Sed aut quam sint officia dignissimos."], ["summary", "Qui minus est. Iure accusantium quaerat et totam. Sit minus cumque. Accusantium pariatur qui sed eligendi exercitationem. Dicta et velit."], ["key", "hiram_brekke_md"], ["created_at", "2016-01-27 21:31:13.904126"], ["updated_at", "2016-01-27 21:31:13.904126"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "temporibus"], ["key", "temporibus"], ["created_at", "2016-01-27 21:31:13.906187"], ["updated_at", "2016-01-27 21:31:13.906187"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iure"], ["key", "iure"], ["created_at", "2016-01-27 21:31:13.907743"], ["updated_at", "2016-01-27 21:31:13.907743"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "possimus"], ["key", "possimus"], ["created_at", "2016-01-27 21:31:13.909060"], ["updated_at", "2016-01-27 21:31:13.909060"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Paper Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:31:13.911964"], ["updated_at", "2016-01-27 21:31:13.911964"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Marble Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:31:13.914786"], ["updated_at", "2016-01-27 21:31:13.914786"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Rubber Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:31:13.917120"], ["updated_at", "2016-01-27 21:31:13.917120"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Marble Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:31:13.919084"], ["updated_at", "2016-01-27 21:31:13.919084"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.2ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (17.0ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ernesto Grant"], ["job_title", "Product Configuration Liaison"], ["greetings", "Esse in nam laborum est facere."], ["summary", "Velit sed nulla iste occaecati. Repellendus qui aut accusantium sunt. Natus non laudantium suscipit atque. Sint alias vel labore facere at consequatur laudantium."], ["key", "ernesto_grant"], ["created_at", "2016-01-27 21:34:22.115478"], ["updated_at", "2016-01-27 21:34:22.115478"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:34:22.135661"], ["updated_at", "2016-01-27 21:34:22.135661"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Joannie Harber"], ["job_title", "National Markets Associate"], ["greetings", "Et autem voluptatibus culpa non nostrum aspernatur error omnis."], ["summary", "Dolore atque ut dolores et. Adipisci ut et. Omnis illo ut rem culpa recusandae. Magni sed ex adipisci soluta. Enim qui nam optio ut."], ["key", "mr_joannie_harber"], ["created_at", "2016-01-27 21:34:22.141427"], ["updated_at", "2016-01-27 21:34:22.141427"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:34:22.143485"], ["updated_at", "2016-01-27 21:34:22.143485"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Orie Robel"], ["job_title", "Regional Intranet Associate"], ["greetings", "Architecto nihil earum dolorem a."], ["summary", "Atque iste molestias. Sit quo culpa. Impedit similique quaerat tempore tenetur est voluptatibus praesentium. Minus ipsum corporis qui blanditiis ut. Ratione ex quod vero delectus architecto quo."], ["key", "orie_robel"], ["created_at", "2016-01-27 21:34:22.146358"], ["updated_at", "2016-01-27 21:34:22.146358"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:34:22.148279"], ["updated_at", "2016-01-27 21:34:22.148279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Theo Kautzer"], ["job_title", "Global Group Representative"], ["greetings", "Qui cumque mollitia magni ad."], ["summary", "Neque corrupti et explicabo voluptates. Non aut quam nisi ut facilis error et. Aut nemo voluptate."], ["key", "theo_kautzer"], ["created_at", "2016-01-27 21:34:22.154917"], ["updated_at", "2016-01-27 21:34:22.154917"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:34:22.156952"], ["updated_at", "2016-01-27 21:34:22.156952"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sonya Nikolaus"], ["job_title", "Dynamic Configuration Director"], ["greetings", "Accusamus voluptas et quidem eaque modi."], ["summary", "Explicabo quasi quibusdam. Sed saepe enim et vel optio accusantium. Aut fugiat culpa nam quia et dolore."], ["key", "sonya_nikolaus"], ["created_at", "2016-01-27 21:34:22.161088"], ["updated_at", "2016-01-27 21:34:22.161088"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:34:22.164060"], ["updated_at", "2016-01-27 21:34:22.164060"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tom Rohan"], ["job_title", "Senior Paradigm Developer"], ["greetings", "Quia incidunt quis et nostrum accusantium modi quisquam."], ["summary", "Quas provident est accusantium natus et. Sint accusamus qui vero. Dolores et ipsam excepturi et alias. Sit qui ipsa enim neque quo dolorum velit. Magni eligendi temporibus vitae quo molestiae tenetur quaerat."], ["key", "tom_rohan"], ["created_at", "2016-01-27 21:34:22.168885"], ["updated_at", "2016-01-27 21:34:22.168885"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:34:22.171431"], ["updated_at", "2016-01-27 21:34:22.171431"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Wilber Pfannerstill DDS"], ["job_title", "Investor Infrastructure Associate"], ["greetings", "Fugit eaque non praesentium eveniet dolore."], ["summary", "Doloremque excepturi aut facilis. Ullam assumenda odit. Dignissimos sed aut quo laborum minus amet. Harum vero voluptate corporis cum possimus magni. Iure distinctio error in atque qui neque veniam."], ["key", "wilber_pfannerstill_dds"], ["created_at", "2016-01-27 21:34:22.176300"], ["updated_at", "2016-01-27 21:34:22.176300"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "totam"], ["key", "totam"], ["created_at", "2016-01-27 21:34:22.181155"], ["updated_at", "2016-01-27 21:34:22.181155"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "repellat"], ["key", "repellat"], ["created_at", "2016-01-27 21:34:22.183073"], ["updated_at", "2016-01-27 21:34:22.183073"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nostrum"], ["key", "nostrum"], ["created_at", "2016-01-27 21:34:22.187840"], ["updated_at", "2016-01-27 21:34:22.187840"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Bronze Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:34:22.212325"], ["updated_at", "2016-01-27 21:34:22.212325"]] SQL (0.2ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wool Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:34:22.216911"], ["updated_at", "2016-01-27 21:34:22.216911"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Copper Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:34:22.219572"], ["updated_at", "2016-01-27 21:34:22.219572"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Leather Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:34:22.221814"], ["updated_at", "2016-01-27 21:34:22.221814"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Chester Mueller"], ["job_title", "Legacy Optimization Coordinator"], ["greetings", "Atque sequi aut id aut."], ["summary", "Culpa dolorem velit mollitia voluptatem. Reprehenderit tenetur tempora quasi ut enim et saepe. Rerum ad at cum perferendis non consequatur qui. Est quae et explicabo illum error."], ["key", "chester_mueller"], ["created_at", "2016-01-27 21:34:22.244012"], ["updated_at", "2016-01-27 21:34:22.244012"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sapiente"], ["key", "sapiente"], ["created_at", "2016-01-27 21:34:22.246167"], ["updated_at", "2016-01-27 21:34:22.246167"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "velit"], ["key", "velit"], ["created_at", "2016-01-27 21:34:22.247852"], ["updated_at", "2016-01-27 21:34:22.247852"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ea"], ["key", "ea"], ["created_at", "2016-01-27 21:34:22.249276"], ["updated_at", "2016-01-27 21:34:22.249276"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Steel Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:34:22.252674"], ["updated_at", "2016-01-27 21:34:22.252674"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Rubber Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:34:22.255600"], ["updated_at", "2016-01-27 21:34:22.255600"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Granite Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:34:22.257422"], ["updated_at", "2016-01-27 21:34:22.257422"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:34:22.259156"], ["updated_at", "2016-01-27 21:34:22.259156"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jadyn Cartwright"], ["job_title", "Future Implementation Orchestrator"], ["greetings", "Aliquid dolores natus ut in animi."], ["summary", "Facere voluptas est magni doloremque deleniti et tempora. Eos officiis ea ratione tempora non. At ipsum quas quasi rerum. Quis sequi cum."], ["key", "jadyn_cartwright"], ["created_at", "2016-01-27 21:34:22.269933"], ["updated_at", "2016-01-27 21:34:22.269933"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "velit"], ["key", "velit"], ["created_at", "2016-01-27 21:34:22.271895"], ["updated_at", "2016-01-27 21:34:22.271895"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "debitis"], ["key", "debitis"], ["created_at", "2016-01-27 21:34:22.273744"], ["updated_at", "2016-01-27 21:34:22.273744"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quo"], ["key", "quo"], ["created_at", "2016-01-27 21:34:22.275586"], ["updated_at", "2016-01-27 21:34:22.275586"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Silk Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:34:22.279406"], ["updated_at", "2016-01-27 21:34:22.279406"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Bronze Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:34:22.282452"], ["updated_at", "2016-01-27 21:34:22.282452"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Rubber Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:34:22.284291"], ["updated_at", "2016-01-27 21:34:22.284291"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Silk Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:34:22.286023"], ["updated_at", "2016-01-27 21:34:22.286023"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Haylee Bednar Jr."], ["job_title", "Future Applications Consultant"], ["greetings", "Quod voluptatem et est odit."], ["summary", "Dolores error alias est rerum dolor animi quam. Quis ut perspiciatis sint amet voluptate assumenda. Illum labore amet cum ut et tempore. Quaerat culpa optio est eaque explicabo nesciunt molestiae."], ["key", "haylee_bednar_jr"], ["created_at", "2016-01-27 21:34:22.290078"], ["updated_at", "2016-01-27 21:34:22.290078"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cupiditate"], ["key", "cupiditate"], ["created_at", "2016-01-27 21:34:22.293422"], ["updated_at", "2016-01-27 21:34:22.293422"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-27 21:34:22.295209"], ["updated_at", "2016-01-27 21:34:22.295209"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iusto"], ["key", "iusto"], ["created_at", "2016-01-27 21:34:22.296702"], ["updated_at", "2016-01-27 21:34:22.296702"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Paper Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:34:22.300200"], ["updated_at", "2016-01-27 21:34:22.300200"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Granite Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:34:22.303173"], ["updated_at", "2016-01-27 21:34:22.303173"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Concrete Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:34:22.304942"], ["updated_at", "2016-01-27 21:34:22.304942"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Plastic Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:34:22.306651"], ["updated_at", "2016-01-27 21:34:22.306651"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Addison Lebsack"], ["job_title", "Product Optimization Facilitator"], ["greetings", "Quod perferendis nam omnis eos reiciendis nostrum eum."], ["summary", "Consequatur illum ad nisi unde ut sunt dolorum. Et sit velit. Delectus tempora et ad architecto qui quam assumenda. Ipsa dolorem quibusdam non molestiae laudantium."], ["key", "addison_lebsack"], ["created_at", "2016-01-27 21:34:22.323512"], ["updated_at", "2016-01-27 21:34:22.323512"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Silk Wallet"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:34:22.326134"], ["updated_at", "2016-01-27 21:34:22.326134"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Plastic Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:34:22.328872"], ["updated_at", "2016-01-27 21:34:22.328872"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Concrete Shoes"], ["site_id", 1], ["created_at", "2016-01-27 21:34:22.333061"], ["updated_at", "2016-01-27 21:34:22.333061"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Cotton Chair"], ["site_id", 1], ["created_at", "2016-01-27 21:34:22.335036"], ["updated_at", "2016-01-27 21:34:22.335036"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (14.8ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (204.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (272.5ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Johnathan Towne"], ["job_title", "Corporate Directives Consultant"], ["greetings", "Iure non autem dolorum."], ["summary", "In dolores fugit eos. Aliquid ut hic omnis et consequuntur. Iste deserunt ipsa unde ut ea consequuntur omnis."], ["key", "johnathan_towne"], ["created_at", "2016-01-27 21:34:22.633235"], ["updated_at", "2016-01-27 21:34:22.633235"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Aluminum Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:34:22.638413"], ["updated_at", "2016-01-27 21:34:22.638413"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Copper Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:34:22.642983"], ["updated_at", "2016-01-27 21:34:22.642983"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Granite Bag"], ["site_id", 1], ["created_at", "2016-01-27 21:34:22.647120"], ["updated_at", "2016-01-27 21:34:22.647120"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wool Wallet"], ["site_id", 1], ["created_at", "2016-01-27 21:34:22.651511"], ["updated_at", "2016-01-27 21:34:22.651511"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.4ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.8ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Brenda Hermann"], ["job_title", "Future Creative Consultant"], ["greetings", "Eum molestiae aperiam et fugit iusto."], ["summary", "Dolorem sint itaque. Qui eos placeat sunt consequuntur voluptas. Magni ut dolorem quia vel iusto. Vero sed hic autem quasi. Ex quia perspiciatis sint ratione corrupti voluptas natus."], ["key", "brenda_hermann"], ["created_at", "2016-01-27 21:34:22.686156"], ["updated_at", "2016-01-27 21:34:22.686156"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "in"], ["key", "in"], ["created_at", "2016-01-27 21:34:22.690498"], ["updated_at", "2016-01-27 21:34:22.690498"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "repellendus"], ["key", "repellendus"], ["created_at", "2016-01-27 21:34:22.694032"], ["updated_at", "2016-01-27 21:34:22.694032"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "culpa"], ["key", "culpa"], ["created_at", "2016-01-27 21:34:22.697540"], ["updated_at", "2016-01-27 21:34:22.697540"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Leather Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:34:22.702924"], ["updated_at", "2016-01-27 21:34:22.702924"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Concrete Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:34:22.705865"], ["updated_at", "2016-01-27 21:34:22.705865"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Copper Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:34:22.707686"], ["updated_at", "2016-01-27 21:34:22.707686"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Concrete Bag"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:34:22.709466"], ["updated_at", "2016-01-27 21:34:22.709466"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.4ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Noble Ferry"], ["job_title", "Future Research Liaison"], ["greetings", "Optio asperiores repudiandae non dignissimos impedit est qui."], ["summary", "Ut veritatis animi autem nihil et at. Nulla aut vero animi a sint quod. Dolore vero non laudantium distinctio. Occaecati ipsam nam quia quis quidem. Architecto voluptas odit ipsa."], ["key", "noble_ferry"], ["created_at", "2016-01-27 21:34:22.730578"], ["updated_at", "2016-01-27 21:34:22.730578"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nisi"], ["key", "nisi"], ["created_at", "2016-01-27 21:34:22.733909"], ["updated_at", "2016-01-27 21:34:22.733909"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "repudiandae"], ["key", "repudiandae"], ["created_at", "2016-01-27 21:34:22.735598"], ["updated_at", "2016-01-27 21:34:22.735598"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dicta"], ["key", "dicta"], ["created_at", "2016-01-27 21:34:22.737223"], ["updated_at", "2016-01-27 21:34:22.737223"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Aluminum Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:34:22.740293"], ["updated_at", "2016-01-27 21:34:22.740293"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Concrete Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:34:22.743155"], ["updated_at", "2016-01-27 21:34:22.743155"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wooden Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:34:22.745057"], ["updated_at", "2016-01-27 21:34:22.745057"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Granite Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:34:22.747645"], ["updated_at", "2016-01-27 21:34:22.747645"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.2ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (12.9ms) Portfolio::SiteItemCategory Load (0.3ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Colleen Zemlak"], ["job_title", "Legacy Identity Specialist"], ["greetings", "Vitae commodi aliquid quis eius."], ["summary", "Molestias hic pariatur. A reiciendis adipisci itaque. Suscipit minus architecto veniam modi et fugit."], ["key", "colleen_zemlak"], ["created_at", "2016-01-27 21:34:22.768789"], ["updated_at", "2016-01-27 21:34:22.768789"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (9.6ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Renee Treutel DDS"], ["job_title", "Customer Factors Officer"], ["greetings", "Nihil aliquam ut ut numquam aut sint qui."], ["summary", "Qui sed libero aut sit repellendus. Quia est magni sit voluptatum assumenda sed. Vero consequatur recusandae et in perspiciatis."], ["key", "renee_treutel_dds"], ["created_at", "2016-01-27 21:34:22.794859"], ["updated_at", "2016-01-27 21:34:22.794859"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.5ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kaley Cole"], ["job_title", "Legacy Solutions Orchestrator"], ["greetings", "Repellendus iusto et qui dolores id officia laboriosam."], ["summary", "Quia necessitatibus eius laudantium optio et voluptatem. Debitis nesciunt laboriosam aut. Eveniet est ut est omnis rerum est."], ["key", "kaley_cole"], ["created_at", "2016-01-27 21:34:22.804441"], ["updated_at", "2016-01-27 21:34:22.804441"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "excepturi"], ["key", "excepturi"], ["created_at", "2016-01-27 21:34:22.806377"], ["updated_at", "2016-01-27 21:34:22.806377"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sed"], ["key", "sed"], ["created_at", "2016-01-27 21:34:22.807945"], ["updated_at", "2016-01-27 21:34:22.807945"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "incidunt"], ["key", "incidunt"], ["created_at", "2016-01-27 21:34:22.809277"], ["updated_at", "2016-01-27 21:34:22.809277"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wool Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:34:22.812360"], ["updated_at", "2016-01-27 21:34:22.812360"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Bronze Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:34:22.817591"], ["updated_at", "2016-01-27 21:34:22.817591"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Marble Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:34:22.819562"], ["updated_at", "2016-01-27 21:34:22.819562"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Aluminum Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:34:22.821636"], ["updated_at", "2016-01-27 21:34:22.821636"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.3ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (16.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Gonzalo Schulist"], ["job_title", "Future Security Planner"], ["greetings", "Dolore architecto blanditiis adipisci."], ["summary", "Nemo harum omnis. Ipsum non eius. Est dolorem aperiam. Ipsa porro quis. Molestias autem explicabo quo aliquam."], ["key", "miss_gonzalo_schulist"], ["created_at", "2016-01-27 21:36:24.371694"], ["updated_at", "2016-01-27 21:36:24.371694"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:36:24.390062"], ["updated_at", "2016-01-27 21:36:24.390062"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Llewellyn Cummerata"], ["job_title", "Internal Applications Specialist"], ["greetings", "Fugiat vel dignissimos quisquam."], ["summary", "Qui quos quo. Perspiciatis sint voluptate reprehenderit quia eveniet labore temporibus. Eligendi aspernatur nulla. Quisquam voluptates veniam tempore magnam. Rem qui non."], ["key", "llewellyn_cummerata"], ["created_at", "2016-01-27 21:36:24.396041"], ["updated_at", "2016-01-27 21:36:24.396041"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:36:24.398192"], ["updated_at", "2016-01-27 21:36:24.398192"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tristian Zulauf"], ["job_title", "Dynamic Mobility Officer"], ["greetings", "Et ut quia officia perferendis provident."], ["summary", "Minus est cupiditate modi qui veniam illum. Suscipit voluptates iste est. Doloremque quo minima."], ["key", "tristian_zulauf"], ["created_at", "2016-01-27 21:36:24.401038"], ["updated_at", "2016-01-27 21:36:24.401038"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-27 21:36:24.402838"], ["updated_at", "2016-01-27 21:36:24.402838"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alfonzo Crist"], ["job_title", "National Accountability Developer"], ["greetings", "Dignissimos quo rerum necessitatibus."], ["summary", "Dolores excepturi sint mollitia magnam iure nihil iste. Enim neque doloribus qui. Non animi consequuntur ad voluptatum non facere. Veniam accusamus at quis. Incidunt possimus dolorem molestiae."], ["key", "alfonzo_crist"], ["created_at", "2016-01-27 21:36:24.409899"], ["updated_at", "2016-01-27 21:36:24.409899"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:36:24.411881"], ["updated_at", "2016-01-27 21:36:24.411881"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Abner Hansen"], ["job_title", "Principal Optimization Director"], ["greetings", "Ut nisi quos sed dolore dignissimos a modi."], ["summary", "Eius est porro nemo culpa. Voluptatem repellendus soluta assumenda. Commodi soluta sed sint odio. Sequi voluptas corporis autem repellendus consequatur assumenda porro. Facere ratione voluptatem eaque enim corporis voluptas."], ["key", "abner_hansen"], ["created_at", "2016-01-27 21:36:24.417430"], ["updated_at", "2016-01-27 21:36:24.417430"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:36:24.419935"], ["updated_at", "2016-01-27 21:36:24.419935"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Otto Treutel"], ["job_title", "Direct Intranet Analyst"], ["greetings", "Quis ut expedita ab ad est et delectus."], ["summary", "Natus voluptatem reprehenderit optio pariatur. Expedita vel similique id eos veniam quidem. Dolor aut et temporibus est id qui quod."], ["key", "otto_treutel"], ["created_at", "2016-01-27 21:36:24.424156"], ["updated_at", "2016-01-27 21:36:24.424156"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-27 21:36:24.426433"], ["updated_at", "2016-01-27 21:36:24.426433"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Hailey Williamson DVM"], ["job_title", "Forward Mobility Strategist"], ["greetings", "Architecto dolorem quaerat in."], ["summary", "Quibusdam aliquid nostrum non id iste. Placeat dolorum corrupti consectetur officiis dolorem ut. Consequatur id repellat quo esse pariatur veritatis."], ["key", "hailey_williamson_dvm"], ["created_at", "2016-01-27 21:36:24.431538"], ["updated_at", "2016-01-27 21:36:24.431538"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-27 21:36:24.436326"], ["updated_at", "2016-01-27 21:36:24.436326"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tenetur"], ["key", "tenetur"], ["created_at", "2016-01-27 21:36:24.439603"], ["updated_at", "2016-01-27 21:36:24.439603"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "maxime"], ["key", "maxime"], ["created_at", "2016-01-27 21:36:24.443961"], ["updated_at", "2016-01-27 21:36:24.443961"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Iron Watch"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:36:24.464767"], ["updated_at", "2016-01-27 21:36:24.464767"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Cotton Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:36:24.468623"], ["updated_at", "2016-01-27 21:36:24.468623"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Steel Coat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:36:24.472062"], ["updated_at", "2016-01-27 21:36:24.472062"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Plastic Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:36:24.474259"], ["updated_at", "2016-01-27 21:36:24.474259"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ally Casper DVM"], ["job_title", "Customer Brand Architect"], ["greetings", "Nostrum consequatur maxime aut cum."], ["summary", "Et dolore aliquam vel voluptatem nulla. Repellendus rerum quia adipisci ipsum. Delectus quam et maiores quo minima qui. Dolores officia optio inventore perspiciatis."], ["key", "ally_casper_dvm"], ["created_at", "2016-01-27 21:36:24.495344"], ["updated_at", "2016-01-27 21:36:24.495344"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quas"], ["key", "quas"], ["created_at", "2016-01-27 21:36:24.497452"], ["updated_at", "2016-01-27 21:36:24.497452"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-27 21:36:24.499128"], ["updated_at", "2016-01-27 21:36:24.499128"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "omnis"], ["key", "omnis"], ["created_at", "2016-01-27 21:36:24.500537"], ["updated_at", "2016-01-27 21:36:24.500537"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wooden Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:36:24.504076"], ["updated_at", "2016-01-27 21:36:24.504076"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:36:24.507230"], ["updated_at", "2016-01-27 21:36:24.507230"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:36:24.509024"], ["updated_at", "2016-01-27 21:36:24.509024"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Iron Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:36:24.510821"], ["updated_at", "2016-01-27 21:36:24.510821"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Lauren Legros"], ["job_title", "Dynamic Operations Representative"], ["greetings", "Aspernatur iste vel corrupti rerum laborum."], ["summary", "Unde sequi qui suscipit doloribus consectetur est non. Doloribus rerum facilis. Beatae aut illum veritatis maxime error. Voluptas delectus et."], ["key", "ms_lauren_legros"], ["created_at", "2016-01-27 21:36:24.521150"], ["updated_at", "2016-01-27 21:36:24.521150"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nihil"], ["key", "nihil"], ["created_at", "2016-01-27 21:36:24.523046"], ["updated_at", "2016-01-27 21:36:24.523046"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatum"], ["key", "voluptatum"], ["created_at", "2016-01-27 21:36:24.524696"], ["updated_at", "2016-01-27 21:36:24.524696"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "repellendus"], ["key", "repellendus"], ["created_at", "2016-01-27 21:36:24.527331"], ["updated_at", "2016-01-27 21:36:24.527331"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Silk Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:36:24.531669"], ["updated_at", "2016-01-27 21:36:24.531669"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Paper Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:36:24.534811"], ["updated_at", "2016-01-27 21:36:24.534811"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wooden Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:36:24.536926"], ["updated_at", "2016-01-27 21:36:24.536926"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Rubber Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:36:24.540389"], ["updated_at", "2016-01-27 21:36:24.540389"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cleve Buckridge II"], ["job_title", "Dynamic Quality Architect"], ["greetings", "Ullam reprehenderit aut nemo."], ["summary", "Est dolorum magni mollitia deleniti ea. Minima qui numquam sapiente amet quos. Minima assumenda enim. Aut autem libero ut iste aliquid. Vero itaque aut ut dolor vel iste velit."], ["key", "cleve_buckridge_ii"], ["created_at", "2016-01-27 21:36:24.544599"], ["updated_at", "2016-01-27 21:36:24.544599"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "corporis"], ["key", "corporis"], ["created_at", "2016-01-27 21:36:24.546569"], ["updated_at", "2016-01-27 21:36:24.546569"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "earum"], ["key", "earum"], ["created_at", "2016-01-27 21:36:24.549058"], ["updated_at", "2016-01-27 21:36:24.549058"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "magni"], ["key", "magni"], ["created_at", "2016-01-27 21:36:24.551653"], ["updated_at", "2016-01-27 21:36:24.551653"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Steel Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:36:24.555454"], ["updated_at", "2016-01-27 21:36:24.555454"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Iron Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:36:24.558497"], ["updated_at", "2016-01-27 21:36:24.558497"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Silk Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:36:24.560516"], ["updated_at", "2016-01-27 21:36:24.560516"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Bronze Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:36:24.562456"], ["updated_at", "2016-01-27 21:36:24.562456"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Carson Bailey"], ["job_title", "Dynamic Quality Manager"], ["greetings", "Provident quia nihil et dolores."], ["summary", "Quam accusamus ut omnis repellat molestiae accusantium et. Nihil minus numquam corporis deleniti est vero ab. Laborum facere fugiat nisi. Laboriosam soluta amet delectus voluptas."], ["key", "carson_bailey"], ["created_at", "2016-01-27 21:36:24.579396"], ["updated_at", "2016-01-27 21:36:24.579396"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Leather Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:36:24.582066"], ["updated_at", "2016-01-27 21:36:24.582066"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Wooden Keyboard"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:36:24.584763"], ["updated_at", "2016-01-27 21:36:24.584763"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Iron Watch"], ["site_id", 1], ["created_at", "2016-01-27 21:36:24.586583"], ["updated_at", "2016-01-27 21:36:24.586583"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Rubber Bench"], ["site_id", 1], ["created_at", "2016-01-27 21:36:24.590163"], ["updated_at", "2016-01-27 21:36:24.590163"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (17.2ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (212.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (281.1ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Juanita Klein"], ["job_title", "Product Accounts Consultant"], ["greetings", "Beatae laboriosam cum libero."], ["summary", "Explicabo facere voluptate. Est modi accusantium pariatur ab voluptatem. Et repellendus nostrum qui ut optio aperiam eum. Qui ipsa voluptatem dicta incidunt vel."], ["key", "juanita_klein"], ["created_at", "2016-01-27 21:36:24.895464"], ["updated_at", "2016-01-27 21:36:24.895464"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wooden Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:36:24.900636"], ["updated_at", "2016-01-27 21:36:24.900636"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-27 21:36:24.905527"], ["updated_at", "2016-01-27 21:36:24.905527"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Cotton Coat"], ["site_id", 1], ["created_at", "2016-01-27 21:36:24.909498"], ["updated_at", "2016-01-27 21:36:24.909498"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Aluminum Watch"], ["site_id", 1], ["created_at", "2016-01-27 21:36:24.913523"], ["updated_at", "2016-01-27 21:36:24.913523"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.9ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (20.3ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cole Skiles"], ["job_title", "Direct Markets Producer"], ["greetings", "Ipsum ipsa in est odit consequatur voluptates."], ["summary", "Soluta voluptatum quia ut porro enim. Dolor porro qui dignissimos unde dolores et. Nostrum similique unde."], ["key", "cole_skiles"], ["created_at", "2016-01-27 21:36:24.946641"], ["updated_at", "2016-01-27 21:36:24.946641"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "temporibus"], ["key", "temporibus"], ["created_at", "2016-01-27 21:36:24.950863"], ["updated_at", "2016-01-27 21:36:24.950863"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolor"], ["key", "dolor"], ["created_at", "2016-01-27 21:36:24.954909"], ["updated_at", "2016-01-27 21:36:24.954909"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolorum"], ["key", "dolorum"], ["created_at", "2016-01-27 21:36:24.956823"], ["updated_at", "2016-01-27 21:36:24.956823"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wool Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:36:24.959974"], ["updated_at", "2016-01-27 21:36:24.959974"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Plastic Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:36:24.962820"], ["updated_at", "2016-01-27 21:36:24.962820"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Silk Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:36:24.964949"], ["updated_at", "2016-01-27 21:36:24.964949"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Plastic Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:36:24.967002"], ["updated_at", "2016-01-27 21:36:24.967002"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.6ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Noel Mohr"], ["job_title", "Principal Data Engineer"], ["greetings", "Amet vitae sint et assumenda perspiciatis iste ducimus."], ["summary", "Repellat sunt aut unde quos ratione. Veniam ea ullam laboriosam. Sed provident sunt est voluptate similique. Maiores perspiciatis et non. Ipsum porro aliquid et commodi iste."], ["key", "noel_mohr"], ["created_at", "2016-01-27 21:36:24.990730"], ["updated_at", "2016-01-27 21:36:24.990730"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eveniet"], ["key", "eveniet"], ["created_at", "2016-01-27 21:36:24.993371"], ["updated_at", "2016-01-27 21:36:24.993371"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "numquam"], ["key", "numquam"], ["created_at", "2016-01-27 21:36:24.996171"], ["updated_at", "2016-01-27 21:36:24.996171"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "minima"], ["key", "minima"], ["created_at", "2016-01-27 21:36:24.998307"], ["updated_at", "2016-01-27 21:36:24.998307"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Bronze Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:36:25.002625"], ["updated_at", "2016-01-27 21:36:25.002625"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Plastic Computer"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:36:25.005771"], ["updated_at", "2016-01-27 21:36:25.005771"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Bronze Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:36:25.007693"], ["updated_at", "2016-01-27 21:36:25.007693"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Steel Plate"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:36:25.009519"], ["updated_at", "2016-01-27 21:36:25.009519"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (12.9ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Sandrine Stokes"], ["job_title", "Corporate Accountability Coordinator"], ["greetings", "Laudantium non facere eveniet."], ["summary", "Aut sed qui adipisci molestiae nihil et sunt. Veniam quia in quibusdam eius omnis ipsam ad. Id suscipit harum iusto sequi distinctio exercitationem. Et tempora veritatis. Sint mollitia dolore sint ea."], ["key", "sandrine_stokes"], ["created_at", "2016-01-27 21:36:25.029209"], ["updated_at", "2016-01-27 21:36:25.029209"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.2ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.2ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (13.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Deven Pagac"], ["job_title", "Global Branding Administrator"], ["greetings", "Aut assumenda et sed."], ["summary", "Ea voluptatem ab. Velit reprehenderit aperiam dicta deleniti. Voluptates quia magnam. Ex est sequi nemo pariatur quae dolorem doloribus."], ["key", "deven_pagac"], ["created_at", "2016-01-27 21:36:25.059617"], ["updated_at", "2016-01-27 21:36:25.059617"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Pat Parker"], ["job_title", "Principal Program Executive"], ["greetings", "Quas dolor dolores vel quia esse."], ["summary", "In officiis molestias et non qui. Asperiores maxime possimus adipisci. Sequi aut harum minus nulla qui nihil repudiandae."], ["key", "dr_pat_parker"], ["created_at", "2016-01-27 21:36:25.068718"], ["updated_at", "2016-01-27 21:36:25.068718"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "provident"], ["key", "provident"], ["created_at", "2016-01-27 21:36:25.072511"], ["updated_at", "2016-01-27 21:36:25.072511"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "laborum"], ["key", "laborum"], ["created_at", "2016-01-27 21:36:25.074719"], ["updated_at", "2016-01-27 21:36:25.074719"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptas"], ["key", "voluptas"], ["created_at", "2016-01-27 21:36:25.076302"], ["updated_at", "2016-01-27 21:36:25.076302"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Bronze Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-27 21:36:25.079525"], ["updated_at", "2016-01-27 21:36:25.079525"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Steel Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-27 21:36:25.083009"], ["updated_at", "2016-01-27 21:36:25.083009"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Concrete Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-27 21:36:25.085262"], ["updated_at", "2016-01-27 21:36:25.085262"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Silk Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-27 21:36:25.087984"], ["updated_at", "2016-01-27 21:36:25.087984"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.7ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (19.0ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jayda Schuppe"], ["job_title", "Future Operations Coordinator"], ["greetings", "Ut doloribus consequatur in."], ["summary", "A id voluptas et qui sunt et dolorem. Et sint labore quae odio autem dolores. Laboriosam ab fuga beatae ut sapiente. Et et in soluta neque quo pariatur."], ["key", "jayda_schuppe"], ["created_at", "2016-01-27 21:49:20.447206"], ["updated_at", "2016-01-27 21:49:20.447206"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Raheem Greenfelder"], ["job_title", "Lead Markets Planner"], ["greetings", "At nam est et est ducimus."], ["summary", "Minima molestiae dolores maiores ex quam. Reiciendis nisi dignissimos velit quo. Rerum omnis vitae itaque pariatur. Quidem saepe consequatur illum nam rem omnis iusto. Ullam iusto in dolores deserunt voluptatem atque optio."], ["key", "mr_raheem_greenfelder"], ["created_at", "2016-01-27 21:53:34.838215"], ["updated_at", "2016-01-27 21:53:34.838215"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Otho Schowalter"], ["job_title", "District Quality Designer"], ["greetings", "Cum consequatur voluptas ratione."], ["summary", "Est eos aspernatur est. Unde praesentium vero animi sunt est modi. Ut sint qui eaque voluptatibus voluptatem. At sed consequatur sunt fuga molestiae error. Inventore aut voluptatum optio id amet tenetur quod."], ["key", "otho_schowalter"], ["created_at", "2016-01-27 21:54:15.392271"], ["updated_at", "2016-01-27 21:54:15.392271"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SitesController#index as HTML Completed 401 Unauthorized in 9ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SitesController#index as HTML Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SitesController#index as HTML Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SitesController#index as HTML Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SitesController#index as HTML Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Portfolio::Site Load (0.4ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 0]] Completed 404 Not Found in 11ms (ActiveRecord: 0.7ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.8ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Toby Johns"], ["job_title", "Direct Applications Technician"], ["greetings", "Ex laudantium incidunt alias qui."], ["summary", "Corrupti ducimus voluptatem. Dignissimos perferendis consequatur maxime totam eligendi. Ut et mollitia ut. Modi vel ut rerum ipsa."], ["key", "toby_johns"], ["created_at", "2016-01-29 16:29:37.807000"], ["updated_at", "2016-01-29 16:29:37.807000"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Completed 401 Unauthorized in 9ms (ActiveRecord: 0.1ms) Rendered text template (0.0ms)  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 0]] Completed 404 Not Found in 7ms (ActiveRecord: 0.4ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 0]] Completed 404 Not Found in 7ms (ActiveRecord: 0.4ms)  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 9ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Benedict Ortiz"], ["job_title", "Direct Security Planner"], ["greetings", "Ab quis aperiam ullam dolorum ipsa quia qui."], ["summary", "Minus consequatur et tempore voluptates. Deleniti cumque et quae soluta possimus. Consectetur aut ipsum amet. Accusantium excepturi molestiae molestiae voluptatem laudantium."], ["key", "benedict_ortiz"], ["created_at", "2016-01-29 16:32:00.394752"], ["updated_at", "2016-01-29 16:32:00.394752"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.3ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'kariane@wieganddonnelly.co' LIMIT 1 SQL (0.9ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "kariane@wieganddonnelly.co"], ["encrypted_password", "$2a$04$uDk5i8GNzxvz/EhrojfUv.Gq65EZMLFj7h3u1Q.JczIxYiTPhh3jO"], ["created_at", "2016-01-29 16:36:48.523352"], ["updated_at", "2016-01-29 16:36:48.523352"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Eula Lebsack V"], ["job_title", "Forward Response Engineer"], ["greetings", "Excepturi et nobis beatae et."], ["summary", "Sed aliquam veniam officiis. Occaecati architecto ducimus et odit id magnam ipsa. Iusto a enim non dolores commodi. Non sit earum deserunt fugiat iure rem aut."], ["key", "eula_lebsack_v"], ["created_at", "2016-01-29 16:36:48.606794"], ["updated_at", "2016-01-29 16:36:48.606794"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 13ms (Views: 6.9ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'gregorio@volkmanlangworth.info' LIMIT 1 SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "gregorio@volkmanlangworth.info"], ["encrypted_password", "$2a$04$QifGgzeTy7A5KgzFMQcDfexjxypq/o2/IOz3VZd24dI35xqsQmVke"], ["created_at", "2016-01-29 16:38:02.114987"], ["updated_at", "2016-01-29 16:38:02.114987"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Zola Considine"], ["job_title", "Product Configuration Agent"], ["greetings", "Quo et consequatur odit magnam nobis."], ["summary", "Commodi repudiandae fugiat non dolor dolorem illo. Hic et facere nulla veniam et sit. Laudantium ipsum eum aliquid et. Nemo veritatis soluta. Ut quia nobis."], ["key", "zola_considine"], ["created_at", "2016-01-29 16:38:02.205408"], ["updated_at", "2016-01-29 16:38:02.205408"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 11ms (Views: 5.6ms | ActiveRecord: 0.3ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SitesController#index as HTML Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Edna Luettgen"], ["job_title", "Senior Markets Representative"], ["greetings", "Consectetur ex voluptatibus dolor."], ["summary", "Ullam voluptatum labore. Qui asperiores est provident laboriosam et amet ipsum. Et ab porro nobis."], ["key", "edna_luettgen"], ["created_at", "2016-01-29 16:38:02.228048"], ["updated_at", "2016-01-29 16:38:02.228048"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-29 16:38:02.245479"], ["updated_at", "2016-01-29 16:38:02.245479"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Myrtle McCullough"], ["job_title", "Internal Group Planner"], ["greetings", "Beatae natus eos tempora eaque ipsa molestiae distinctio eveniet."], ["summary", "Explicabo in deleniti. Laborum qui expedita possimus adipisci est repellat dicta. Delectus quae neque ut veniam voluptatibus earum."], ["key", "myrtle_mccullough"], ["created_at", "2016-01-29 16:38:02.250865"], ["updated_at", "2016-01-29 16:38:02.250865"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-29 16:38:02.252878"], ["updated_at", "2016-01-29 16:38:02.252878"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Carissa Prohaska"], ["job_title", "Investor Mobility Executive"], ["greetings", "Aut dignissimos quo aspernatur ipsa."], ["summary", "Quo sunt aperiam nostrum. Eligendi labore tempore quia dolores. Esse aut ad praesentium quia consequatur. Repellat voluptatem excepturi maiores assumenda earum."], ["key", "carissa_prohaska"], ["created_at", "2016-01-29 16:38:02.255963"], ["updated_at", "2016-01-29 16:38:02.255963"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-29 16:38:02.258310"], ["updated_at", "2016-01-29 16:38:02.258310"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lucile Jaskolski"], ["job_title", "Principal Quality Orchestrator"], ["greetings", "Autem optio beatae quia accusantium in voluptates."], ["summary", "Vel eaque in. Est quia reprehenderit. Quae facilis sed."], ["key", "lucile_jaskolski"], ["created_at", "2016-01-29 16:38:02.266229"], ["updated_at", "2016-01-29 16:38:02.266229"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-29 16:38:02.270390"], ["updated_at", "2016-01-29 16:38:02.270390"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Elza Walter Jr."], ["job_title", "Human Directives Developer"], ["greetings", "Iste ea dignissimos molestiae qui nobis corrupti nulla."], ["summary", "Sit ducimus esse odio possimus commodi est necessitatibus. Provident non corporis similique praesentium aut. Possimus modi perferendis et dolorem adipisci et deleniti. Cum non optio nihil."], ["key", "elza_walter_jr"], ["created_at", "2016-01-29 16:38:02.275458"], ["updated_at", "2016-01-29 16:38:02.275458"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-29 16:38:02.277464"], ["updated_at", "2016-01-29 16:38:02.277464"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alvis Pfeffer"], ["job_title", "National Configuration Planner"], ["greetings", "Iusto voluptas fuga ipsam et maxime in."], ["summary", "Vel est amet soluta rerum ut id natus. Cupiditate quod tenetur qui aliquid possimus accusantium. Voluptate id sed odit nisi maiores. Cumque nihil voluptas."], ["key", "alvis_pfeffer"], ["created_at", "2016-01-29 16:38:02.281233"], ["updated_at", "2016-01-29 16:38:02.281233"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-29 16:38:02.283237"], ["updated_at", "2016-01-29 16:38:02.283237"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bridget Emard"], ["job_title", "Chief Accountability Representative"], ["greetings", "Perferendis doloremque mollitia illo quasi molestiae tempore aliquid."], ["summary", "Est aut sit. Itaque at tempore ipsum porro dolor. Provident earum aperiam."], ["key", "bridget_emard"], ["created_at", "2016-01-29 16:38:02.288647"], ["updated_at", "2016-01-29 16:38:02.288647"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "architecto"], ["key", "architecto"], ["created_at", "2016-01-29 16:38:02.293700"], ["updated_at", "2016-01-29 16:38:02.293700"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "corporis"], ["key", "corporis"], ["created_at", "2016-01-29 16:38:02.295915"], ["updated_at", "2016-01-29 16:38:02.295915"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dicta"], ["key", "dicta"], ["created_at", "2016-01-29 16:38:02.300501"], ["updated_at", "2016-01-29 16:38:02.300501"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Plastic Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:38:02.323526"], ["updated_at", "2016-01-29 16:38:02.323526"]] SQL (0.4ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Wool Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:38:02.327685"], ["updated_at", "2016-01-29 16:38:02.327685"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Cotton Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:38:02.329501"], ["updated_at", "2016-01-29 16:38:02.329501"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:38:02.331266"], ["updated_at", "2016-01-29 16:38:02.331266"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Timothy Brown"], ["job_title", "Internal Usability Administrator"], ["greetings", "Nisi enim libero dolorem qui fuga excepturi repudiandae laudantium."], ["summary", "Magnam facere dolorem. Quibusdam facilis totam nobis velit odit culpa. Magnam deserunt est dolor debitis et nostrum ipsum. A id labore omnis."], ["key", "timothy_brown"], ["created_at", "2016-01-29 16:38:02.350163"], ["updated_at", "2016-01-29 16:38:02.350163"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fugiat"], ["key", "fugiat"], ["created_at", "2016-01-29 16:38:02.352144"], ["updated_at", "2016-01-29 16:38:02.352144"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cupiditate"], ["key", "cupiditate"], ["created_at", "2016-01-29 16:38:02.353730"], ["updated_at", "2016-01-29 16:38:02.353730"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-29 16:38:02.355033"], ["updated_at", "2016-01-29 16:38:02.355033"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Paper Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:38:02.358599"], ["updated_at", "2016-01-29 16:38:02.358599"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Silk Gloves"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:38:02.362057"], ["updated_at", "2016-01-29 16:38:02.362057"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Linen Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:38:02.363954"], ["updated_at", "2016-01-29 16:38:02.363954"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Granite Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:38:02.365751"], ["updated_at", "2016-01-29 16:38:02.365751"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jarrell Nicolas"], ["job_title", "District Operations Manager"], ["greetings", "Est enim ut cumque deserunt et quisquam."], ["summary", "Error dolores sunt. Ipsum ipsam rem sapiente vero totam consequatur. Sint id nostrum placeat qui eum quam. Voluptatem aut et quibusdam rerum sunt accusamus sed."], ["key", "jarrell_nicolas"], ["created_at", "2016-01-29 16:38:02.375446"], ["updated_at", "2016-01-29 16:38:02.375446"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dicta"], ["key", "dicta"], ["created_at", "2016-01-29 16:38:02.377547"], ["updated_at", "2016-01-29 16:38:02.377547"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aperiam"], ["key", "aperiam"], ["created_at", "2016-01-29 16:38:02.379130"], ["updated_at", "2016-01-29 16:38:02.379130"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptas"], ["key", "voluptas"], ["created_at", "2016-01-29 16:38:02.380461"], ["updated_at", "2016-01-29 16:38:02.380461"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Plastic Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:38:02.384051"], ["updated_at", "2016-01-29 16:38:02.384051"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Iron Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:38:02.387288"], ["updated_at", "2016-01-29 16:38:02.387288"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Granite Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:38:02.389366"], ["updated_at", "2016-01-29 16:38:02.389366"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Aluminum Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:38:02.391177"], ["updated_at", "2016-01-29 16:38:02.391177"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alvena Turcotte"], ["job_title", "Principal Usability Designer"], ["greetings", "Nostrum corrupti quis sapiente veritatis non nihil vel praesentium."], ["summary", "Quia culpa ea fuga dolores itaque alias. Reiciendis ea at sequi rerum perspiciatis laudantium est. Amet sapiente quaerat. Hic cupiditate quasi nulla. Velit dolor qui."], ["key", "alvena_turcotte"], ["created_at", "2016-01-29 16:38:02.395388"], ["updated_at", "2016-01-29 16:38:02.395388"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-29 16:38:02.397313"], ["updated_at", "2016-01-29 16:38:02.397313"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aliquid"], ["key", "aliquid"], ["created_at", "2016-01-29 16:38:02.399006"], ["updated_at", "2016-01-29 16:38:02.399006"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "esse"], ["key", "esse"], ["created_at", "2016-01-29 16:38:02.400628"], ["updated_at", "2016-01-29 16:38:02.400628"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Leather Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:38:02.406509"], ["updated_at", "2016-01-29 16:38:02.406509"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Wool Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:38:02.419937"], ["updated_at", "2016-01-29 16:38:02.419937"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Linen Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:38:02.421915"], ["updated_at", "2016-01-29 16:38:02.421915"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:38:02.424063"], ["updated_at", "2016-01-29 16:38:02.424063"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Reta Howell"], ["job_title", "Senior Branding Facilitator"], ["greetings", "Nobis nihil laudantium dignissimos ullam ut error quia."], ["summary", "Praesentium occaecati delectus dolorem autem dolore. Cum placeat velit reiciendis facilis est accusantium accusamus. Dolores eum illo repudiandae ut magnam saepe sint. Et earum vel a saepe ipsa incidunt. Velit ut sint quis omnis incidunt."], ["key", "reta_howell"], ["created_at", "2016-01-29 16:38:02.431433"], ["updated_at", "2016-01-29 16:38:02.431433"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Silk Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 16:38:02.433709"], ["updated_at", "2016-01-29 16:38:02.433709"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Wooden Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 16:38:02.437809"], ["updated_at", "2016-01-29 16:38:02.437809"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Linen Shoes"], ["site_id", 1], ["created_at", "2016-01-29 16:38:02.440214"], ["updated_at", "2016-01-29 16:38:02.440214"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Bench"], ["site_id", 1], ["created_at", "2016-01-29 16:38:02.442337"], ["updated_at", "2016-01-29 16:38:02.442337"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.8ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.3ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (261.3ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (330.0ms) Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Linwood Fay"], ["job_title", "Direct Paradigm Orchestrator"], ["greetings", "Incidunt quia doloremque totam sequi."], ["summary", "Et et vel culpa accusantium. Dolorem iusto eum tempora laudantium rem eos non. Iste nobis aut nihil voluptates quasi laborum. Numquam quam sint inventore earum praesentium id iusto."], ["key", "linwood_fay"], ["created_at", "2016-01-29 16:38:02.792201"], ["updated_at", "2016-01-29 16:38:02.792201"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Copper Computer"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 16:38:02.794904"], ["updated_at", "2016-01-29 16:38:02.794904"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Granite Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 16:38:02.797297"], ["updated_at", "2016-01-29 16:38:02.797297"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Steel Pants"], ["site_id", 1], ["created_at", "2016-01-29 16:38:02.799267"], ["updated_at", "2016-01-29 16:38:02.799267"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Cotton Bottle"], ["site_id", 1], ["created_at", "2016-01-29 16:38:02.801906"], ["updated_at", "2016-01-29 16:38:02.801906"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (5.0ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (8.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gregg Daugherty"], ["job_title", "Customer Identity Technician"], ["greetings", "Qui repellat vitae incidunt doloremque dicta consequatur."], ["summary", "Eos qui nostrum distinctio saepe illo soluta. Beatae reprehenderit laboriosam error accusamus praesentium est. Similique porro quis. Et eaque est beatae totam praesentium. Ut et aut."], ["key", "gregg_daugherty"], ["created_at", "2016-01-29 16:38:02.816917"], ["updated_at", "2016-01-29 16:38:02.816917"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cumque"], ["key", "cumque"], ["created_at", "2016-01-29 16:38:02.818834"], ["updated_at", "2016-01-29 16:38:02.818834"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-29 16:38:02.820429"], ["updated_at", "2016-01-29 16:38:02.820429"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quod"], ["key", "quod"], ["created_at", "2016-01-29 16:38:02.822171"], ["updated_at", "2016-01-29 16:38:02.822171"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Granite Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:38:02.826214"], ["updated_at", "2016-01-29 16:38:02.826214"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Leather Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:38:02.829367"], ["updated_at", "2016-01-29 16:38:02.829367"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Bronze Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:38:02.831195"], ["updated_at", "2016-01-29 16:38:02.831195"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Rubber Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:38:02.832964"], ["updated_at", "2016-01-29 16:38:02.832964"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.7ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.2ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.9ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Rico Tromp"], ["job_title", "Lead Group Orchestrator"], ["greetings", "Itaque ducimus quia exercitationem magnam incidunt ad."], ["summary", "At voluptate quas sequi sunt. Aut ipsam iste omnis voluptate omnis. Eos fuga voluptas esse molestiae."], ["key", "rico_tromp"], ["created_at", "2016-01-29 16:38:02.853166"], ["updated_at", "2016-01-29 16:38:02.853166"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consectetur"], ["key", "consectetur"], ["created_at", "2016-01-29 16:38:02.855164"], ["updated_at", "2016-01-29 16:38:02.855164"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cupiditate"], ["key", "cupiditate"], ["created_at", "2016-01-29 16:38:02.856818"], ["updated_at", "2016-01-29 16:38:02.856818"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "optio"], ["key", "optio"], ["created_at", "2016-01-29 16:38:02.858240"], ["updated_at", "2016-01-29 16:38:02.858240"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Rubber Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:38:02.861812"], ["updated_at", "2016-01-29 16:38:02.861812"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Marble Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:38:02.864804"], ["updated_at", "2016-01-29 16:38:02.864804"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Marble Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:38:02.866557"], ["updated_at", "2016-01-29 16:38:02.866557"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Copper Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:38:02.868824"], ["updated_at", "2016-01-29 16:38:02.868824"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.2ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.1ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Thalia Koss"], ["job_title", "Internal Assurance Officer"], ["greetings", "Temporibus corrupti ut at impedit iure fugit enim."], ["summary", "Neque ab necessitatibus pariatur est non rerum ut. Reiciendis ea ipsa qui et adipisci. Explicabo inventore iure officiis quasi esse. Deserunt sequi est voluptatem est nobis tempora."], ["key", "thalia_koss"], ["created_at", "2016-01-29 16:38:02.890069"], ["updated_at", "2016-01-29 16:38:02.890069"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.9ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.4ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (7.5ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jaron Morar"], ["job_title", "National Mobility Producer"], ["greetings", "Magnam in natus iusto consequatur quo."], ["summary", "Ipsum odio saepe sit non est vero. Vitae magni molestiae nam. Consequatur tenetur sit a."], ["key", "jaron_morar"], ["created_at", "2016-01-29 16:38:02.916073"], ["updated_at", "2016-01-29 16:38:02.916073"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.3ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Margarette Swaniawski"], ["job_title", "National Metrics Orchestrator"], ["greetings", "Numquam animi eius iure."], ["summary", "Quasi et voluptas delectus maiores et ex. Animi tempora error dolor. Totam nisi et in. Sunt optio laboriosam."], ["key", "margarette_swaniawski"], ["created_at", "2016-01-29 16:38:02.925299"], ["updated_at", "2016-01-29 16:38:02.925299"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "neque"], ["key", "neque"], ["created_at", "2016-01-29 16:38:02.927414"], ["updated_at", "2016-01-29 16:38:02.927414"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nostrum"], ["key", "nostrum"], ["created_at", "2016-01-29 16:38:02.929136"], ["updated_at", "2016-01-29 16:38:02.929136"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sapiente"], ["key", "sapiente"], ["created_at", "2016-01-29 16:38:02.930524"], ["updated_at", "2016-01-29 16:38:02.930524"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Paper Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:38:02.933378"], ["updated_at", "2016-01-29 16:38:02.933378"]] SQL (0.3ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Iron Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:38:02.938194"], ["updated_at", "2016-01-29 16:38:02.938194"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Plastic Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:38:02.940189"], ["updated_at", "2016-01-29 16:38:02.940189"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Wooden Shoes"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:38:02.942081"], ["updated_at", "2016-01-29 16:38:02.942081"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.9ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (18.7ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 8ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'stacey_fay@rosenbaum.biz' LIMIT 1 SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "stacey_fay@rosenbaum.biz"], ["encrypted_password", "$2a$04$QKPsPWTWCj8GysEsScmUZOdLNa.34.TZPwiZ3xlrWZ/ezwQUa3ojm"], ["created_at", "2016-01-29 16:39:24.103000"], ["updated_at", "2016-01-29 16:39:24.103000"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ray Marquardt"], ["job_title", "Chief Identity Architect"], ["greetings", "Nemo corrupti quibusdam vero."], ["summary", "Sed voluptas voluptatibus atque eos quos quis velit. Voluptatibus voluptas saepe autem excepturi non aut. Harum pariatur culpa sint eum."], ["key", "ray_marquardt"], ["created_at", "2016-01-29 16:39:24.185890"], ["updated_at", "2016-01-29 16:39:24.185890"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 11ms (Views: 5.3ms | ActiveRecord: 0.3ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 10ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'dorothea@dibbert.info' LIMIT 1 SQL (0.6ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "dorothea@dibbert.info"], ["encrypted_password", "$2a$04$yFmz8QdkcO5NFwn1vdtPGuIn85c2pC3L9y4k.6c6xqTh5vGP6RrfO"], ["created_at", "2016-01-29 16:40:30.072578"], ["updated_at", "2016-01-29 16:40:30.072578"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cristina Kemmer"], ["job_title", "Global Quality Analyst"], ["greetings", "Distinctio et et saepe eos est consectetur totam."], ["summary", "Asperiores et quam aut cupiditate consequatur voluptatibus ad. Deleniti neque facere dolor atque optio. Eveniet eius est ex. Commodi sit dolores minima."], ["key", "cristina_kemmer"], ["created_at", "2016-01-29 16:40:30.157427"], ["updated_at", "2016-01-29 16:40:30.157427"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 11ms (Views: 5.3ms | ActiveRecord: 0.3ms)  (1.5ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 8ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'blair.renner@waters.name' LIMIT 1 SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "blair.renner@waters.name"], ["encrypted_password", "$2a$04$3pOSAUbHRB970sPmOg1pi.GPJK1bwdVkcELqywAqvzZCNTIWjubaO"], ["created_at", "2016-01-29 16:42:32.066357"], ["updated_at", "2016-01-29 16:42:32.066357"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Roxane Kautzer"], ["job_title", "Internal Security Representative"], ["greetings", "Aut sapiente inventore molestias."], ["summary", "Ea accusamus odit. Et blanditiis maxime error impedit quo a. Omnis odit fuga maxime. Amet deleniti vitae et molestiae quo. Architecto recusandae officiis qui."], ["key", "roxane_kautzer"], ["created_at", "2016-01-29 16:42:32.154867"], ["updated_at", "2016-01-29 16:42:32.154867"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 12ms (Views: 5.4ms | ActiveRecord: 0.3ms)  (1.5ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.2ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'blair.renner@waters.name' LIMIT 1 SQL (0.3ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "blair.renner@waters.name"], ["encrypted_password", "$2a$04$g89msV.nqtF/Wl5texLuReW7XG7BbLPQd2cgcWIkaJ81x/JL9Mycq"], ["created_at", "2016-01-29 16:42:32.178466"], ["updated_at", "2016-01-29 16:42:32.178466"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kristin Price DDS"], ["job_title", "Global Accountability Designer"], ["greetings", "Omnis tempora sunt modi praesentium quasi."], ["summary", "Error mollitia dolore atque illum quo earum. Consectetur quam iusto magni sit voluptas. Et aut officia et placeat ad. Nam aspernatur minima ipsum soluta cum. Nesciunt voluptatem cum praesentium quo ut."], ["key", "kristin_price_dds"], ["created_at", "2016-01-29 16:42:32.181554"], ["updated_at", "2016-01-29 16:42:32.181554"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_item_project"=>{"title"=>"proj1"}, "site_id"=>"1"} Portfolio::AdminUser Load (0.0ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Completed 400 Bad Request in 1ms (ActiveRecord: 0.1ms)  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'lurline.waelchi@weber.com' LIMIT 1 SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "lurline.waelchi@weber.com"], ["encrypted_password", "$2a$04$bXyehRvK6WrLAaowTWGjsukIbFtjfeLPywSShwoYyfjA78nKeDQuu"], ["created_at", "2016-01-29 16:42:47.386386"], ["updated_at", "2016-01-29 16:42:47.386386"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bryce Lehner"], ["job_title", "District Functionality Engineer"], ["greetings", "Molestias illum rem consectetur sint soluta nisi explicabo."], ["summary", "Laboriosam veritatis ex fugiat. Omnis vitae voluptatibus ratione. Quo ipsam quia adipisci doloribus voluptatibus in. Velit quo enim."], ["key", "bryce_lehner"], ["created_at", "2016-01-29 16:42:47.476787"], ["updated_at", "2016-01-29 16:42:47.476787"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.3ms) Completed 200 OK in 11ms (Views: 5.4ms | ActiveRecord: 0.3ms)  (1.5ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'lurline.waelchi@weber.com' LIMIT 1 SQL (0.2ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "lurline.waelchi@weber.com"], ["encrypted_password", "$2a$04$pF.DewJk3msf3AQhECWvPOCEoEbWBdrqsnb25hV4VHY89Fz9gn2N6"], ["created_at", "2016-01-29 16:42:47.499995"], ["updated_at", "2016-01-29 16:42:47.499995"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Clare Hickle DDS"], ["job_title", "Direct Data Manager"], ["greetings", "Reprehenderit fugit qui dolore deserunt."], ["summary", "Qui voluptatem labore libero saepe molestias neque. In ullam quia est rerum. Est neque et quia eaque laborum. Ut inventore ratione nemo."], ["key", "clare_hickle_dds"], ["created_at", "2016-01-29 16:42:47.502329"], ["updated_at", "2016-01-29 16:42:47.502329"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/new.html.erb within layouts/portfolio/admin (0.3ms) Completed 200 OK in 20ms (Views: 5.2ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'rhett@flatley.net' LIMIT 1 SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "rhett@flatley.net"], ["encrypted_password", "$2a$04$oQ15qRJ8dpAvpcciM2T1RugkGiAIHL2nMszhMqgyQJacmVaj6tFLi"], ["created_at", "2016-01-29 16:47:19.850015"], ["updated_at", "2016-01-29 16:47:19.850015"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Yoshiko Bruen"], ["job_title", "Direct Directives Specialist"], ["greetings", "Eos quis non ea."], ["summary", "Pariatur commodi facilis magnam tenetur officiis qui. Voluptatem eum dolorum quasi consectetur nostrum enim sint. Asperiores harum cum sed sed nemo."], ["key", "yoshiko_bruen"], ["created_at", "2016-01-29 16:47:19.934885"], ["updated_at", "2016-01-29 16:47:19.934885"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 11ms (Views: 5.3ms | ActiveRecord: 0.3ms)  (1.5ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'rhett@flatley.net' LIMIT 1 SQL (0.2ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "rhett@flatley.net"], ["encrypted_password", "$2a$04$ljtldPy0ulX1uNlgkWMZ2.UxbxLg.4DjAbGwJWh1SD7J232pHGHQ2"], ["created_at", "2016-01-29 16:47:19.958318"], ["updated_at", "2016-01-29 16:47:19.958318"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cade Howe"], ["job_title", "Product Creative Officer"], ["greetings", "Eum non ut enim ratione."], ["summary", "Aliquid omnis dolor. Architecto praesentium quia vel enim. Dolorem in et. Impedit doloribus aut voluptatem nulla possimus eligendi error."], ["key", "cade_howe"], ["created_at", "2016-01-29 16:47:19.960853"], ["updated_at", "2016-01-29 16:47:19.960853"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/new.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 19ms (Views: 4.3ms | ActiveRecord: 0.3ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'eusebio_shields@langosh.com' LIMIT 1 SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "eusebio_shields@langosh.com"], ["encrypted_password", "$2a$04$KLszJgzTwigsLWpwZk4NNOQJO25dwpAVNw1Mk9NfpWkiDGX6KZFGS"], ["created_at", "2016-01-29 16:47:31.373069"], ["updated_at", "2016-01-29 16:47:31.373069"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Rafael Aufderhar PhD"], ["job_title", "Human Interactions Engineer"], ["greetings", "Ut tempore molestias dolores aut."], ["summary", "Unde neque repellat molestias ut. Dolorem inventore sit itaque consequuntur culpa. Suscipit distinctio non necessitatibus."], ["key", "rafael_aufderhar_phd"], ["created_at", "2016-01-29 16:47:31.457670"], ["updated_at", "2016-01-29 16:47:31.457670"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 11ms (Views: 5.3ms | ActiveRecord: 0.4ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'eusebio_shields@langosh.com' LIMIT 1 SQL (0.2ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "eusebio_shields@langosh.com"], ["encrypted_password", "$2a$04$E4K9gCrCawA14vN/WWUm4uYzNmVtaJ8vTz0JH898lzrI9M.Ct0iOu"], ["created_at", "2016-01-29 16:47:31.483026"], ["updated_at", "2016-01-29 16:47:31.483026"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Serenity Conn"], ["job_title", "Product Communications Analyst"], ["greetings", "Qui odit aut similique."], ["summary", "Possimus vero ut veritatis ea maxime rerum temporibus. Aut vitae est et sit quisquam. Omnis eaque quibusdam aut commodi. Eos aut vero repellat mollitia dolores."], ["key", "serenity_conn"], ["created_at", "2016-01-29 16:47:31.486285"], ["updated_at", "2016-01-29 16:47:31.486285"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/new.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 22ms (Views: 5.2ms | ActiveRecord: 0.3ms)  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'jody@mertz.info' LIMIT 1 SQL (0.6ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "jody@mertz.info"], ["encrypted_password", "$2a$04$oLNVBDTLMxuE5uJXHBfl5OBSAlcg7vYB7O31uWRZpjMMVJW1C6rT."], ["created_at", "2016-01-29 16:47:48.260837"], ["updated_at", "2016-01-29 16:47:48.260837"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nellie Bergstrom"], ["job_title", "District Program Planner"], ["greetings", "Impedit expedita vero qui maiores sed dolores perspiciatis."], ["summary", "Expedita cumque aperiam iure est facilis nemo quis. Facilis est consequatur aut in placeat. Voluptatem occaecati labore beatae recusandae debitis nulla. Deserunt beatae adipisci voluptas fugiat consequatur rerum ut."], ["key", "nellie_bergstrom"], ["created_at", "2016-01-29 16:47:48.351202"], ["updated_at", "2016-01-29 16:47:48.351202"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 11ms (Views: 5.4ms | ActiveRecord: 0.3ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'jody@mertz.info' LIMIT 1 SQL (0.2ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "jody@mertz.info"], ["encrypted_password", "$2a$04$VDN9QxAQbuyek3GtksMyKutbu42duWaF0kZ5ytPGmTtBkrq3iDosS"], ["created_at", "2016-01-29 16:47:48.374754"], ["updated_at", "2016-01-29 16:47:48.374754"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Denis Doyle"], ["job_title", "Forward Group Liaison"], ["greetings", "Eius sed ratione cumque et."], ["summary", "Occaecati ut cum vero minima quam. Blanditiis repellat consequatur aliquid. Consequuntur molestias voluptatem et atque incidunt. Aut explicabo est soluta iure. Est et rerum harum veniam."], ["key", "denis_doyle"], ["created_at", "2016-01-29 16:47:48.377627"], ["updated_at", "2016-01-29 16:47:48.377627"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"} Portfolio::AdminUser Load (0.0ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/new.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 22ms (Views: 4.4ms | ActiveRecord: 0.3ms)  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'kyra@lueilwitzgutmann.name' LIMIT 1 SQL (0.3ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "kyra@lueilwitzgutmann.name"], ["encrypted_password", "$2a$04$OMMd.roktBOw6OqbdYss6e5Tp8mkfgXsboe9EQ3DOiggDEIPTxxnG"], ["created_at", "2016-01-29 16:51:27.201814"], ["updated_at", "2016-01-29 16:51:27.201814"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Malvina Greenholt"], ["job_title", "Dynamic Mobility Engineer"], ["greetings", "Quam assumenda minima accusantium sunt aut."], ["summary", "Accusamus consequatur ducimus occaecati ipsam modi soluta dignissimos. A illo et nemo ut quas est. Iure eveniet at ipsam pariatur velit iste. Repellat molestiae eveniet cum nostrum ipsum."], ["key", "malvina_greenholt"], ["created_at", "2016-01-29 16:51:27.285195"], ["updated_at", "2016-01-29 16:51:27.285195"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 11ms (Views: 5.3ms | ActiveRecord: 0.3ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'kyra@lueilwitzgutmann.name' LIMIT 1 SQL (0.2ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "kyra@lueilwitzgutmann.name"], ["encrypted_password", "$2a$04$aPRe1zLZemUh/C8BWFJm.u4UF3RnbgApA78LXNbgVedaSONmUbL.W"], ["created_at", "2016-01-29 16:51:27.308664"], ["updated_at", "2016-01-29 16:51:27.308664"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lolita Skiles"], ["job_title", "Customer Marketing Agent"], ["greetings", "Ut aut est id cumque nemo quod provident qui."], ["summary", "Occaecati voluptate vel officia qui et. Quis et maiores et eveniet id repellendus. Et enim corrupti odio et nostrum fugit. Aspernatur quasi nam optio quam molestiae dolorum totam. Aut et et blanditiis aperiam molestiae et tenetur."], ["key", "lolita_skiles"], ["created_at", "2016-01-29 16:51:27.311734"], ["updated_at", "2016-01-29 16:51:27.311734"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "proj1"], ["site_id", 1], ["created_at", "2016-01-29 16:51:27.332090"], ["updated_at", "2016-01-29 16:51:27.332090"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/admin/sites/1/site_projects/1/edit Completed 302 Found in 21ms (ActiveRecord: 0.5ms)  (1.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'jimmy.keeling@breitenberg.net' LIMIT 1 SQL (0.6ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "jimmy.keeling@breitenberg.net"], ["encrypted_password", "$2a$04$Y6LHo/34dKr52yI9LhbzVetaangGW3XTOWUl9dUJq3BfPupKNNdbm"], ["created_at", "2016-01-29 16:52:17.503520"], ["updated_at", "2016-01-29 16:52:17.503520"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Reece Fahey"], ["job_title", "Legacy Branding Manager"], ["greetings", "Provident alias quis mollitia aliquid sit fuga aspernatur."], ["summary", "Repudiandae consequatur omnis dicta officia. Molestiae adipisci id. Dolore nemo est odit facilis. Quod necessitatibus fuga assumenda enim."], ["key", "reece_fahey"], ["created_at", "2016-01-29 16:52:17.592417"], ["updated_at", "2016-01-29 16:52:17.592417"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.3ms) Completed 200 OK in 12ms (Views: 6.1ms | ActiveRecord: 0.3ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'jimmy.keeling@breitenberg.net' LIMIT 1 SQL (0.3ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "jimmy.keeling@breitenberg.net"], ["encrypted_password", "$2a$04$zu/0vx5B/OgwqrvNUA9O5uBKzJ4xrRRbk2DsvZd8NHYeLJZ7HeX/W"], ["created_at", "2016-01-29 16:52:17.617968"], ["updated_at", "2016-01-29 16:52:17.617968"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Leila Reilly III"], ["job_title", "Investor Intranet Architect"], ["greetings", "In ut voluptate qui."], ["summary", "Numquam aperiam ad quo vel eveniet autem. Enim voluptatem aliquam. Qui illum optio saepe sit quam."], ["key", "leila_reilly_iii"], ["created_at", "2016-01-29 16:52:17.621524"], ["updated_at", "2016-01-29 16:52:17.621524"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "proj1"], ["site_id", 1], ["created_at", "2016-01-29 16:52:17.644987"], ["updated_at", "2016-01-29 16:52:17.644987"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/admin/sites/1/site_projects/1/edit Completed 302 Found in 24ms (ActiveRecord: 0.7ms)  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'natalie@kaulke.name' LIMIT 1 SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "natalie@kaulke.name"], ["encrypted_password", "$2a$04$noIq5DdDlb.tWNKusMsvZ.KXZX/x4UUXQMi5QMrNwAZbR2mm2NmJ2"], ["created_at", "2016-01-29 16:52:34.618978"], ["updated_at", "2016-01-29 16:52:34.618978"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Judah Jacobs"], ["job_title", "Direct Quality Supervisor"], ["greetings", "Ad incidunt et id delectus."], ["summary", "Consequatur voluptas magni architecto rerum. Commodi delectus perferendis. Cupiditate quis ipsam eos nemo qui voluptatem."], ["key", "judah_jacobs"], ["created_at", "2016-01-29 16:52:34.703373"], ["updated_at", "2016-01-29 16:52:34.703373"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.2ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.3ms) Completed 200 OK in 13ms (Views: 5.9ms | ActiveRecord: 0.4ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'natalie@kaulke.name' LIMIT 1 SQL (0.2ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "natalie@kaulke.name"], ["encrypted_password", "$2a$04$MPuB2wI4xHROV2wduYm3aO.j4HTrNO7Biz2A9mNpWgBVaORXR5dM2"], ["created_at", "2016-01-29 16:52:34.728546"], ["updated_at", "2016-01-29 16:52:34.728546"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Hipolito Farrell PhD"], ["job_title", "Legacy Solutions Facilitator"], ["greetings", "Dolor ducimus praesentium doloremque consequuntur."], ["summary", "Maxime ratione repudiandae corporis dolorem vel. Cupiditate est laudantium porro aliquid magni maiores. Itaque totam eos."], ["key", "hipolito_farrell_phd"], ["created_at", "2016-01-29 16:52:34.731022"], ["updated_at", "2016-01-29 16:52:34.731022"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"} Portfolio::AdminUser Load (0.0ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "proj1"], ["site_id", 1], ["created_at", "2016-01-29 16:52:34.750880"], ["updated_at", "2016-01-29 16:52:34.750880"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/admin/sites/1/site_projects/1/edit Completed 302 Found in 20ms (ActiveRecord: 0.5ms)  (1.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'alexys.okuneva@altenwerth.info' LIMIT 1 SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "alexys.okuneva@altenwerth.info"], ["encrypted_password", "$2a$04$TJDXHxEnuFLTjFmlipdZFuuXKJPyClxpXkOWxRo1.me4GrAF.SJNS"], ["created_at", "2016-01-29 16:55:33.955307"], ["updated_at", "2016-01-29 16:55:33.955307"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Torey Larkin"], ["job_title", "Dynamic Assurance Supervisor"], ["greetings", "Dignissimos cupiditate et ipsam quis aut neque."], ["summary", "Aliquid facilis ipsa ipsum. Accusamus eum ratione beatae eius similique hic non. Nemo est ratione animi officiis."], ["key", "torey_larkin"], ["created_at", "2016-01-29 16:55:34.043188"], ["updated_at", "2016-01-29 16:55:34.043188"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms) Completed 200 OK in 12ms (Views: 5.5ms | ActiveRecord: 0.3ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.1ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'alexys.okuneva@altenwerth.info' LIMIT 1 SQL (0.2ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "alexys.okuneva@altenwerth.info"], ["encrypted_password", "$2a$04$KZGgrn/gSlqimPnE7/r2U.ufu4SF2olNaAS1gRUl.3xql6mr.2142"], ["created_at", "2016-01-29 16:55:34.068253"], ["updated_at", "2016-01-29 16:55:34.068253"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dameon Welch"], ["job_title", "National Creative Facilitator"], ["greetings", "Esse quia ut ut cupiditate a non."], ["summary", "Qui eligendi eum minima sed. Dolorem corrupti cum. Velit libero saepe perferendis nam sed."], ["key", "dameon_welch"], ["created_at", "2016-01-29 16:55:34.071087"], ["updated_at", "2016-01-29 16:55:34.071087"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"} Portfolio::AdminUser Load (0.0ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "proj1"], ["site_id", 1], ["created_at", "2016-01-29 16:55:34.091070"], ["updated_at", "2016-01-29 16:55:34.091070"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/admin/sites/1/site_projects/1/edit Completed 302 Found in 20ms (ActiveRecord: 0.5ms)  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'kaitlin.borer@hintzlehner.info' LIMIT 1 SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "kaitlin.borer@hintzlehner.info"], ["encrypted_password", "$2a$04$WQSdfZN6m.YqXcnHZ8FqG.V2t8I8Zwbj.JEizVLEZDjoDZe517LPK"], ["created_at", "2016-01-29 16:56:38.315463"], ["updated_at", "2016-01-29 16:56:38.315463"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Eloy Oberbrunner"], ["job_title", "Future Research Supervisor"], ["greetings", "Quam ipsa ut adipisci nisi iusto."], ["summary", "Ratione cum qui similique. Ab cupiditate ullam rerum. Ut quos dolor consectetur aut voluptate unde. Quia assumenda omnis est et ut voluptate."], ["key", "eloy_oberbrunner"], ["created_at", "2016-01-29 16:56:38.397654"], ["updated_at", "2016-01-29 16:56:38.397654"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#index as HTML Parameters: {"site_id"=>"1"} Portfolio::AdminUser Load (0.1ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.3ms) Completed 200 OK in 11ms (Views: 5.8ms | ActiveRecord: 0.3ms)  (1.5ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_id"=>"0"} Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'kaitlin.borer@hintzlehner.info' LIMIT 1 SQL (0.2ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "kaitlin.borer@hintzlehner.info"], ["encrypted_password", "$2a$04$v7VFljTAH3Ctgd5dHFkLy.1ZDOUZLTIW4Ed6u.wWjEGnxYRgPXDA2"], ["created_at", "2016-01-29 16:56:38.420898"], ["updated_at", "2016-01-29 16:56:38.420898"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ellie Dickens"], ["job_title", "Central Configuration Manager"], ["greetings", "Excepturi adipisci molestiae eveniet."], ["summary", "Quia laudantium sit nulla voluptas reprehenderit nostrum provident. Repellendus hic qui sint voluptatem dolorum omnis sint. Dolores molestiae magni quae molestias."], ["key", "ellie_dickens"], ["created_at", "2016-01-29 16:56:38.423450"], ["updated_at", "2016-01-29 16:56:38.423450"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by Portfolio::Admin::SiteProjectsController#create as HTML Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"} Portfolio::AdminUser Load (0.0ms) SELECT "portfolio_admin_users".* FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."id" = ? ORDER BY "portfolio_admin_users"."id" ASC LIMIT 1 [["id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "proj1"], ["site_id", 1], ["created_at", "2016-01-29 16:56:38.441700"], ["updated_at", "2016-01-29 16:56:38.441700"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/admin/sites/1/site_projects/1/edit Completed 302 Found in 19ms (ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction Processing by Portfolio::Admin::SitesController#index as HTML Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms) Rendered text template (0.0ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Aylin Cartwright"], ["job_title", "Product Markets Assistant"], ["greetings", "Officiis aperiam et adipisci totam tempore iusto non."], ["summary", "Error et tempore. Nihil non ducimus fugit suscipit. Officiis rerum sed voluptatum."], ["key", "mr_aylin_cartwright"], ["created_at", "2016-01-29 16:56:38.454094"], ["updated_at", "2016-01-29 16:56:38.454094"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-29 16:56:38.462821"], ["updated_at", "2016-01-29 16:56:38.462821"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Carolyne Bergnaum MD"], ["job_title", "Chief Data Executive"], ["greetings", "Maxime vel amet ut labore odio enim iusto quaerat."], ["summary", "Nihil qui dolorum cumque tempora dolores. Dolorem accusamus impedit. Tempore eum odit alias excepturi et. Quaerat doloribus expedita nam a. Odit aut fugit sint mollitia."], ["key", "carolyne_bergnaum_md"], ["created_at", "2016-01-29 16:56:38.467907"], ["updated_at", "2016-01-29 16:56:38.467907"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-29 16:56:38.469841"], ["updated_at", "2016-01-29 16:56:38.469841"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Hailie Jakubowski"], ["job_title", "Regional Program Engineer"], ["greetings", "Perferendis ipsam quis mollitia praesentium sed eius dignissimos."], ["summary", "Non et cupiditate. Consequatur illo qui. Explicabo esse cum voluptatem repellat aspernatur ab."], ["key", "miss_hailie_jakubowski"], ["created_at", "2016-01-29 16:56:38.472559"], ["updated_at", "2016-01-29 16:56:38.472559"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "Test child"], ["site_id", 2], ["created_at", "2016-01-29 16:56:38.474072"], ["updated_at", "2016-01-29 16:56:38.474072"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') Portfolio::SiteItemChild Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild') ORDER BY "portfolio_site_items"."id" ASC LIMIT 1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lenora Champlin"], ["job_title", "Forward Group Representative"], ["greetings", "Nam sunt ea reprehenderit."], ["summary", "Consequatur illum architecto rerum fuga iusto. Qui qui voluptas soluta expedita alias maxime. Ad dolore nihil ut deleniti. Et qui ab libero esse qui ipsa asperiores. Dicta atque similique."], ["key", "lenora_champlin"], ["created_at", "2016-01-29 16:56:38.483944"], ["updated_at", "2016-01-29 16:56:38.483944"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-29 16:56:38.485987"], ["updated_at", "2016-01-29 16:56:38.485987"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Cleve Greenfelder"], ["job_title", "Internal Identity Coordinator"], ["greetings", "Quia corporis aut accusamus."], ["summary", "Mollitia commodi earum. Ipsa delectus in est. Voluptas quibusdam tempora nulla necessitatibus."], ["key", "cleve_greenfelder"], ["created_at", "2016-01-29 16:56:38.490326"], ["updated_at", "2016-01-29 16:56:38.490326"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-29 16:56:38.494261"], ["updated_at", "2016-01-29 16:56:38.494261"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Makenna Cartwright"], ["job_title", "Dynamic Accountability Liaison"], ["greetings", "Similique labore ex aut deleniti corporis impedit fugiat dolore."], ["summary", "Vel est est. Ipsam qui praesentium. Voluptates qui ut."], ["key", "makenna_cartwright"], ["created_at", "2016-01-29 16:56:38.498304"], ["updated_at", "2016-01-29 16:56:38.498304"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteItemChild"], ["title", "Test child"], ["site_id", 1], ["created_at", "2016-01-29 16:56:38.500214"], ["updated_at", "2016-01-29 16:56:38.500214"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Waino Lakin"], ["job_title", "Central Applications Developer"], ["greetings", "Dolorem voluptatem qui in provident."], ["summary", "Amet hic ut et eius temporibus omnis. Est voluptatum deleniti inventore qui. Sapiente laudantium dolor est nesciunt."], ["key", "waino_lakin"], ["created_at", "2016-01-29 16:56:38.504350"], ["updated_at", "2016-01-29 16:56:38.504350"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-29 16:56:38.509064"], ["updated_at", "2016-01-29 16:56:38.509064"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ullam"], ["key", "ullam"], ["created_at", "2016-01-29 16:56:38.510995"], ["updated_at", "2016-01-29 16:56:38.510995"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "distinctio"], ["key", "distinctio"], ["created_at", "2016-01-29 16:56:38.515189"], ["updated_at", "2016-01-29 16:56:38.515189"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Paper Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:56:38.532812"], ["updated_at", "2016-01-29 16:56:38.532812"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Granite Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:56:38.535976"], ["updated_at", "2016-01-29 16:56:38.535976"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Paper Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:56:38.537862"], ["updated_at", "2016-01-29 16:56:38.537862"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wool Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:56:38.539714"], ["updated_at", "2016-01-29 16:56:38.539714"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Heaven Barrows DDS"], ["job_title", "Legacy Markets Supervisor"], ["greetings", "Aliquam voluptatem ex accusamus."], ["summary", "Iusto quaerat repellendus fugit laborum et. Vel ut omnis. Inventore est quos quia."], ["key", "heaven_barrows_dds"], ["created_at", "2016-01-29 16:56:38.558939"], ["updated_at", "2016-01-29 16:56:38.558939"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nesciunt"], ["key", "nesciunt"], ["created_at", "2016-01-29 16:56:38.561293"], ["updated_at", "2016-01-29 16:56:38.561293"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatibus"], ["key", "voluptatibus"], ["created_at", "2016-01-29 16:56:38.563113"], ["updated_at", "2016-01-29 16:56:38.563113"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-29 16:56:38.564496"], ["updated_at", "2016-01-29 16:56:38.564496"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Cotton Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:56:38.567637"], ["updated_at", "2016-01-29 16:56:38.567637"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Plastic Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:56:38.570500"], ["updated_at", "2016-01-29 16:56:38.570500"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Aluminum Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:56:38.572268"], ["updated_at", "2016-01-29 16:56:38.572268"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Iron Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:56:38.574133"], ["updated_at", "2016-01-29 16:56:38.574133"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? [["site_id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Chaya Considine"], ["job_title", "Human Intranet Specialist"], ["greetings", "Labore quisquam et omnis sint quos esse ut."], ["summary", "Aut magni assumenda quia asperiores minima. Neque doloribus quo et et velit. Voluptates ut iure fuga deleniti qui quisquam ut. Est quis vel qui."], ["key", "chaya_considine"], ["created_at", "2016-01-29 16:56:38.583886"], ["updated_at", "2016-01-29 16:56:38.583886"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quas"], ["key", "quas"], ["created_at", "2016-01-29 16:56:38.586033"], ["updated_at", "2016-01-29 16:56:38.586033"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsam"], ["key", "ipsam"], ["created_at", "2016-01-29 16:56:38.587734"], ["updated_at", "2016-01-29 16:56:38.587734"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "autem"], ["key", "autem"], ["created_at", "2016-01-29 16:56:38.589382"], ["updated_at", "2016-01-29 16:56:38.589382"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Silk Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:56:38.594690"], ["updated_at", "2016-01-29 16:56:38.594690"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Steel Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:56:38.599508"], ["updated_at", "2016-01-29 16:56:38.599508"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Cotton Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:56:38.612375"], ["updated_at", "2016-01-29 16:56:38.612375"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Paper Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:56:38.614404"], ["updated_at", "2016-01-29 16:56:38.614404"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Alan Cruickshank MD"], ["job_title", "Forward Marketing Engineer"], ["greetings", "Temporibus et iusto corporis molestias."], ["summary", "Iusto unde accusantium aspernatur ad quis. Aut qui harum earum excepturi. Qui officiis et facilis quo."], ["key", "alan_cruickshank_md"], ["created_at", "2016-01-29 16:56:38.618535"], ["updated_at", "2016-01-29 16:56:38.618535"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tenetur"], ["key", "tenetur"], ["created_at", "2016-01-29 16:56:38.620753"], ["updated_at", "2016-01-29 16:56:38.620753"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-29 16:56:38.622389"], ["updated_at", "2016-01-29 16:56:38.622389"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tenetur"], ["key", "tenetur"], ["created_at", "2016-01-29 16:56:38.623876"], ["updated_at", "2016-01-29 16:56:38.623876"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Linen Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:56:38.628534"], ["updated_at", "2016-01-29 16:56:38.628534"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Wooden Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:56:38.631533"], ["updated_at", "2016-01-29 16:56:38.631533"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Rubber Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:56:38.633335"], ["updated_at", "2016-01-29 16:56:38.633335"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Steel Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:56:38.635326"], ["updated_at", "2016-01-29 16:56:38.635326"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Portfolio::SiteItemTag Load (0.1ms) SELECT "portfolio_site_item_tags".* FROM "portfolio_site_item_tags" ORDER BY "portfolio_site_item_tags"."id" ASC LIMIT 1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Devin Emmerich"], ["job_title", "Corporate Response Designer"], ["greetings", "Illum qui praesentium modi et aut rerum."], ["summary", "Voluptatibus ea fugit dolor et assumenda quos. Velit ut magni est a earum incidunt. Consectetur maxime voluptatem perspiciatis voluptatibus nostrum culpa."], ["key", "devin_emmerich"], ["created_at", "2016-01-29 16:56:38.641799"], ["updated_at", "2016-01-29 16:56:38.641799"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Incredible Cotton Wallet"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 16:56:38.644361"], ["updated_at", "2016-01-29 16:56:38.644361"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Leather Clock"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 16:56:38.646682"], ["updated_at", "2016-01-29 16:56:38.646682"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Plastic Gloves"], ["site_id", 1], ["created_at", "2016-01-29 16:56:38.648807"], ["updated_at", "2016-01-29 16:56:38.648807"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Plastic Table"], ["site_id", 1], ["created_at", "2016-01-29 16:56:38.650725"], ["updated_at", "2016-01-29 16:56:38.650725"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (15.5ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (210.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (277.9ms) Portfolio::SiteProject Load (0.3ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Maximillian Sanford"], ["job_title", "Lead Tactics Administrator"], ["greetings", "Quam occaecati eius totam qui explicabo."], ["summary", "Molestiae enim voluptates sint quam incidunt aut. Sint officia distinctio sed dolor aut repellendus enim. Atque maiores ut. Enim impedit ducimus molestiae. Sit et ad et et."], ["key", "maximillian_sanford"], ["created_at", "2016-01-29 16:56:38.953145"], ["updated_at", "2016-01-29 16:56:38.953145"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Concrete Chair"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 16:56:38.958099"], ["updated_at", "2016-01-29 16:56:38.958099"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Copper Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 16:56:38.963094"], ["updated_at", "2016-01-29 16:56:38.963094"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Paper Bench"], ["site_id", 1], ["created_at", "2016-01-29 16:56:38.967278"], ["updated_at", "2016-01-29 16:56:38.967278"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Wooden Clock"], ["site_id", 1], ["created_at", "2016-01-29 16:56:38.971188"], ["updated_at", "2016-01-29 16:56:38.971188"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (2.5ms) Portfolio::SiteItemCategory Load (0.2ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 2]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (12.8ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (21.5ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Michel Keebler"], ["job_title", "Legacy Configuration Producer"], ["greetings", "Ipsam pariatur maiores id rem voluptates."], ["summary", "Voluptates a et dicta. Laboriosam maiores at doloremque dolore iste eum. Aspernatur magnam doloremque harum. Officia qui ducimus ad iure aut. Commodi harum vero rerum distinctio sit aut dolorem."], ["key", "michel_keebler"], ["created_at", "2016-01-29 16:56:39.003254"], ["updated_at", "2016-01-29 16:56:39.003254"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "a"], ["key", "a"], ["created_at", "2016-01-29 16:56:39.005229"], ["updated_at", "2016-01-29 16:56:39.005229"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aut"], ["key", "aut"], ["created_at", "2016-01-29 16:56:39.006793"], ["updated_at", "2016-01-29 16:56:39.006793"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-29 16:56:39.008239"], ["updated_at", "2016-01-29 16:56:39.008239"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Wooden Computer"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:56:39.011698"], ["updated_at", "2016-01-29 16:56:39.011698"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Copper Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:56:39.014643"], ["updated_at", "2016-01-29 16:56:39.014643"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Aluminum Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:56:39.016689"], ["updated_at", "2016-01-29 16:56:39.016689"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Aluminum Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:56:39.018420"], ["updated_at", "2016-01-29 16:56:39.018420"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.1ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.2ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.1ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.3ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "t"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Broderick Brakus Sr."], ["job_title", "Legacy Response Planner"], ["greetings", "Maiores ducimus quaerat fuga."], ["summary", "Reprehenderit rem quasi. Esse quod tempora. Quibusdam iusto itaque nam voluptates. Eveniet vero soluta odit."], ["key", "broderick_brakus_sr"], ["created_at", "2016-01-29 16:56:39.039305"], ["updated_at", "2016-01-29 16:56:39.039305"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "totam"], ["key", "totam"], ["created_at", "2016-01-29 16:56:39.041433"], ["updated_at", "2016-01-29 16:56:39.041433"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quasi"], ["key", "quasi"], ["created_at", "2016-01-29 16:56:39.045558"], ["updated_at", "2016-01-29 16:56:39.045558"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "corporis"], ["key", "corporis"], ["created_at", "2016-01-29 16:56:39.047539"], ["updated_at", "2016-01-29 16:56:39.047539"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Bronze Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:56:39.050711"], ["updated_at", "2016-01-29 16:56:39.050711"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Copper Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:56:39.053853"], ["updated_at", "2016-01-29 16:56:39.053853"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Granite Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:56:39.055830"], ["updated_at", "2016-01-29 16:56:39.055830"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Cotton Knife"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:56:39.057641"], ["updated_at", "2016-01-29 16:56:39.057641"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (1.7ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" WHERE "portfolio_site_item_categories"."id" IN (SELECT "portfolio_site_items"."site_item_category_id" FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ?) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 1], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.9ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteProject Load (0.0ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_item_category_id" = ? AND "portfolio_site_items"."public" = ? [["site_item_category_id", 2], ["public", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 3]] Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.6ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND ("portfolio_site_items"."site_item_category_id" IS NOT NULL) [["site_id", 1], ["public", "t"]]  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms) Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (11.6ms) Portfolio::SiteItemCategory Load (0.1ms) SELECT "portfolio_site_item_categories".* FROM "portfolio_site_item_categories" ORDER BY "portfolio_site_item_categories"."id" ASC LIMIT 1 Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? [["site_id", 1], ["public", "f"]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Tamara Reinger"], ["job_title", "Human Assurance Developer"], ["greetings", "Autem dicta praesentium corporis expedita eum."], ["summary", "Ut fugiat repellat adipisci neque veritatis est. Non enim aut tempora et. Reiciendis iste dolorem officiis. Ut consequuntur perferendis fugit et aut explicabo et. Culpa nulla debitis sed consequatur tenetur."], ["key", "tamara_reinger"], ["created_at", "2016-01-29 16:56:39.077320"], ["updated_at", "2016-01-29 16:56:39.077320"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.1ms)  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.1ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (7.3ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Claud Huel"], ["job_title", "Legacy Usability Developer"], ["greetings", "Reiciendis vel voluptatem iusto eaque vel."], ["summary", "Sit sint laborum. In quo mollitia aspernatur aut est totam nemo. Nobis ratione non consequatur sit quisquam."], ["key", "ms_claud_huel"], ["created_at", "2016-01-29 16:56:39.102143"], ["updated_at", "2016-01-29 16:56:39.102143"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.7ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.0ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Akeem Schneider"], ["job_title", "Central Interactions Developer"], ["greetings", "Et provident amet tempora."], ["summary", "Aut dolor atque odit quae animi provident. Suscipit amet assumenda consectetur culpa maiores rerum. Deleniti sed recusandae quia voluptates quasi. Odio aut eveniet. Veritatis ut expedita."], ["key", "akeem_schneider"], ["created_at", "2016-01-29 16:56:39.111618"], ["updated_at", "2016-01-29 16:56:39.111618"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eveniet"], ["key", "eveniet"], ["created_at", "2016-01-29 16:56:39.113735"], ["updated_at", "2016-01-29 16:56:39.113735"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sint"], ["key", "sint"], ["created_at", "2016-01-29 16:56:39.115751"], ["updated_at", "2016-01-29 16:56:39.115751"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quasi"], ["key", "quasi"], ["created_at", "2016-01-29 16:56:39.117169"], ["updated_at", "2016-01-29 16:56:39.117169"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "featured", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Silk Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 16:56:39.120019"], ["updated_at", "2016-01-29 16:56:39.120019"]] SQL (0.1ms) INSERT INTO "portfolio_site_item_tags_items" ("site_item_tag_id", "site_item_id") VALUES (?, ?) [["site_item_tag_id", 1], ["site_item_id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Copper Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 16:56:39.122842"], ["updated_at", "2016-01-29 16:56:39.122842"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Aluminum Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 16:56:39.125025"], ["updated_at", "2016-01-29 16:56:39.125025"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "site_item_category_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Iron Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 16:56:39.128919"], ["updated_at", "2016-01-29 16:56:39.128919"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (0.8ms)  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? [["site_id", 1], ["public", "t"], ["featured", "t"]] Portfolio::SiteItemImage Exists (0.0ms) SELECT 1 AS one FROM "portfolio_site_item_images" WHERE "portfolio_site_item_images"."site_item_id" = ? LIMIT 1 [["site_item_id", 1]] Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (4.2ms) Portfolio::SiteSocialLink Load (0.0ms) SELECT "portfolio_site_social_links".* FROM "portfolio_site_social_links" WHERE "portfolio_site_social_links"."site_id" = ? [["site_id", 1]] Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (16.9ms) Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_items".* FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."featured" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]  (1.5ms) rollback transaction