rails-portfolio 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (21) hide show
  1. checksums.yaml +4 -4
  2. data/app/views/portfolio/shared/_header_menu.html.erb +2 -2
  3. data/lib/portfolio/engine.rb +2 -0
  4. data/lib/portfolio/version.rb +1 -1
  5. data/spec/dummy/db/test.sqlite3 +0 -0
  6. data/spec/dummy/log/test.log +2975 -0
  7. data/spec/dummy/public/system/portfolio/social_links/images/000/000/001/large/github.png +0 -0
  8. data/spec/dummy/public/system/portfolio/social_links/images/000/000/001/medium/github.png +0 -0
  9. data/spec/dummy/public/system/portfolio/social_links/images/000/000/002/large/twitter.png +0 -0
  10. data/spec/dummy/public/system/portfolio/social_links/images/000/000/002/medium/twitter.png +0 -0
  11. data/spec/dummy/public/system/portfolio/social_links/images/000/000/003/large/linkedin.png +0 -0
  12. data/spec/dummy/public/system/portfolio/social_links/images/000/000/003/medium/linkedin.png +0 -0
  13. data/spec/dummy/tmp/cache/sprockets/v3.0/-leFskyr92zijV2BCv-bQ6JGJBVXTx3qJt3FiKetveo.cache +1 -0
  14. data/spec/dummy/tmp/cache/sprockets/v3.0/7Xw02YteK-nmRJzzFUCqdOVWTVL2llDw9Kxm2ry-rps.cache +2 -0
  15. data/spec/dummy/tmp/cache/sprockets/v3.0/MiK6Q5mrCqaoRxEs1H-OuZDjF3TMB21l6Ug72K6PwvM.cache +0 -0
  16. data/spec/dummy/tmp/cache/sprockets/v3.0/RL0eiYfAeLTRhPy32YgG8rOwKvRnDKpjMppjYO3Elzc.cache +1 -0
  17. data/spec/dummy/tmp/cache/sprockets/v3.0/_QPPb4WTu8FExOmecPMqBzeDM2T85QDUcQY47l-ZLls.cache +1 -0
  18. data/spec/dummy/tmp/cache/sprockets/v3.0/iZoDog-OXDl4V0Q_m99TibxVitflzE0nZNO4_VkT0Nw.cache +1 -0
  19. data/spec/dummy/tmp/cache/sprockets/v3.0/xr_Yf0QDvkhKRGCOKatjJXY3EHwG87GL0npROBA03JU.cache +1 -0
  20. data/spec/views/portfolio/site_projects/index.html.erb_spec.rb +1 -1
  21. metadata +97 -27
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ea35bf99b59e92267c2a2c0fe46533f1270c0cf1
4
- data.tar.gz: 8633bb0c327dcf597fabc7a9b42ad29381c108c6
3
+ metadata.gz: a6634ea65f45bf4cab5300f466f0a08dd3f713b6
4
+ data.tar.gz: 2d326618e155ff114eb5ef0ccde0093125918494
5
5
  SHA512:
6
- metadata.gz: 0e20decd10288ba725fd2020e4d6743dbd61c3820abda125e7171f30a85e56fdf7f478f2870c4af19b0ba81520f83fcbeb459464ddd4cae9b01c99c97b57ed26
7
- data.tar.gz: a44923f1ece754ef6e177d616287c562c49f6d1c586fa4a25742c4152aa84d5bcab6625d7d03044722c687ddb61f8ae4781f4fc4125b0060e3b6433b1f98b560
6
+ metadata.gz: ff6b49abda6a3b4dfdbe35a2bb4fb002288f0f688dd4c2c1d3ec3e8158962efffbbe08811603c440c6e05cb63e182aba27d106eb32674c17c95f6334bcde6034
7
+ data.tar.gz: 369ee20993669231192af23a56b275f0bafa10fc736f7118cf58a2b21c20368c123fb368761f25b59e549f1df6bfdf84d1370cad7c06c8ddcb2b8ecaa4188faf
@@ -1,11 +1,11 @@
1
1
  <% if @site.site_menu_links.count > 0 || items_to_show(@site) %>
2
2
  <div class="portfolio_header_menu">
3
- <%= link_to 'Home', show_portfolio_path(@site.key), class: 'active' %>
3
+ <%= link_to 'Home', portfolio.show_portfolio_path(@site.key), class: 'active' %>
4
4
 
5
5
  <% Portfolio::SiteItem.subclasses.each do |klass| %>
6
6
  <% if klass.where(site: @site).published.count > 0 %>
7
7
  <% name = klass.human_name.pluralize %>
8
- <%= link_to klass.display_name || name.humanize, send("portfolio_#{name}_path", @site.key) %>
8
+ <%= link_to klass.display_name || name.humanize, portfolio.send("portfolio_#{name}_path", @site.key) %>
9
9
  <% end %>
10
10
  <% end %>
11
11
 
@@ -4,6 +4,8 @@ require 'redcarpet'
4
4
  require 'bootstrap-sass'
5
5
  require 'bootstrap-sass-extras'
6
6
  require 'jquery-rails'
7
+ require 'factory_girl_rails'
8
+ require 'faker'
7
9
 
8
10
 
9
11
  module Portfolio
@@ -1,3 +1,3 @@
1
1
  module Portfolio
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
Binary file
@@ -20388,3 +20388,2978 @@ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
20388
20388
  Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (16.9ms)
20389
20389
  Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
20390
20390
   (1.5ms) rollback transaction
20391
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
20392
+  (0.3ms) select sqlite_version(*)
20393
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20394
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20395
+ Migrating to CreatePortfolioTables (20150714235507)
20396
+  (0.0ms) begin transaction
20397
+  (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)
20398
+  (0.1ms) CREATE INDEX "index_portfolio_sites_on_key" ON "portfolio_sites" ("key")
20399
+  (0.2ms) 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)
20400
+  (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) 
20401
+  (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_site_id" ON "portfolio_site_social_links" ("site_id")
20402
+  (0.1ms)  SELECT sql
20403
+ FROM sqlite_master
20404
+ WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'
20405
+ UNION ALL
20406
+ SELECT sql
20407
+ FROM sqlite_temp_master
20408
+ WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'
20409
+ 
20410
+  (0.1ms) CREATE INDEX "index_portfolio_site_social_links_on_social_link_id" ON "portfolio_site_social_links" ("social_link_id")
20411
+  (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) 
20412
+  (0.1ms) CREATE INDEX "index_portfolio_site_menu_links_on_site_id" ON "portfolio_site_menu_links" ("site_id")
20413
+  (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) 
20414
+  (0.1ms) CREATE INDEX "index_portfolio_site_items_on_site_id" ON "portfolio_site_items" ("site_id")
20415
+  (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) 
20416
+  (0.1ms) CREATE INDEX "index_portfolio_site_item_images_on_site_item_id" ON "portfolio_site_item_images" ("site_item_id")
20417
+ Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160129-78118-tgfgxa.png'
20418
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160129-78118-16rtbux.png[0]' 2>/dev/null
20419
+ Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160129-78118-16rtbux.png[0]'
20420
+ Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160129-78118-16rtbux.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/c786641ea0b3f421992e17f76023c1eb20160129-78118-elbpi5'
20421
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160129-78118-16rtbux.png[0]' 2>/dev/null
20422
+ Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160129-78118-16rtbux.png[0]'
20423
+ Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160129-78118-16rtbux.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/c786641ea0b3f421992e17f76023c1eb20160129-78118-d3opw5'
20424
+ Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/bf215181b5140522137b3d4f6b73544a20160129-78118-g543h.png'
20425
+ 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-29 18:21:27.562927"], ["created_at", "2016-01-29 18:21:27.700948"], ["updated_at", "2016-01-29 18:21:27.700948"]]
20426
+ Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160129-78118-q1toid.png'
20427
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160129-78118-1h80kyp.png[0]' 2>/dev/null
20428
+ Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160129-78118-1h80kyp.png[0]'
20429
+ Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160129-78118-1h80kyp.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b4d5814701a52325e06c102d0d117a9f20160129-78118-3ney7a'
20430
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160129-78118-1h80kyp.png[0]' 2>/dev/null
20431
+ Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160129-78118-1h80kyp.png[0]'
20432
+ Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160129-78118-1h80kyp.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b4d5814701a52325e06c102d0d117a9f20160129-78118-1uh7oem'
20433
+ Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/b73c2d22763d1ce2143a3755c1d0ad3a20160129-78118-1aovtz3.png'
20434
+ 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-29 18:21:27.711530"], ["created_at", "2016-01-29 18:21:27.826929"], ["updated_at", "2016-01-29 18:21:27.826929"]]
20435
+ Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160129-78118-29f2go.png'
20436
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160129-78118-6pghyq.png[0]' 2>/dev/null
20437
+ Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160129-78118-6pghyq.png[0]'
20438
+ Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160129-78118-6pghyq.png[0]' -auto-orient -resize "32x32>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/c94aea007247c2f76c5d1163e98993a820160129-78118-1iwaucg'
20439
+ Command :: identify -format '%wx%h,%[exif:orientation]' '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160129-78118-6pghyq.png[0]' 2>/dev/null
20440
+ Command :: identify -format %m '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160129-78118-6pghyq.png[0]'
20441
+ Command :: convert '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160129-78118-6pghyq.png[0]' -auto-orient -resize "64x64>" '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/c94aea007247c2f76c5d1163e98993a820160129-78118-esjybe'
20442
+ Command :: file -b --mime '/var/folders/c0/cg02vc3x0k506hx79h_yz73m0000gn/T/f1576406b382b7d1c8c2607f7c563d4f20160129-78118-19nyvya.png'
20443
+ 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-29 18:21:27.837692"], ["created_at", "2016-01-29 18:21:27.945458"], ["updated_at", "2016-01-29 18:21:27.945458"]]
20444
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150714235507"]]
20445
+  (0.7ms) commit transaction
20446
+ Migrating to DeviseCreatePortfolioAdminUsers (20150916001106)
20447
+  (0.0ms) begin transaction
20448
+  (0.5ms) 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) 
20449
+  (0.5ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_email" ON "portfolio_admin_users" ("email")
20450
+  (0.1ms)  SELECT sql
20451
+ FROM sqlite_master
20452
+ WHERE name='index_portfolio_admin_users_on_email' AND type='index'
20453
+ UNION ALL
20454
+ SELECT sql
20455
+ FROM sqlite_temp_master
20456
+ WHERE name='index_portfolio_admin_users_on_email' AND type='index'
20457
+ 
20458
+  (0.1ms) CREATE UNIQUE INDEX "index_portfolio_admin_users_on_reset_password_token" ON "portfolio_admin_users" ("reset_password_token")
20459
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150916001106"]]
20460
+  (1.5ms) commit transaction
20461
+ Migrating to CreatePortfolioAdminSiteItemCategories (20151124202355)
20462
+  (0.1ms) begin transaction
20463
+  (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)
20464
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124202355"]]
20465
+  (0.5ms) commit transaction
20466
+ Migrating to AddSiteItemCategoryIdToSiteItem (20151124210602)
20467
+  (0.0ms) begin transaction
20468
+  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "site_item_category_id" integer
20469
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151124210602"]]
20470
+  (0.6ms) commit transaction
20471
+ Migrating to AddFeaturedToSiteItem (20151125132700)
20472
+  (0.0ms) begin transaction
20473
+  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "featured" boolean DEFAULT 'f'
20474
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125132700"]]
20475
+  (0.5ms) commit transaction
20476
+ Migrating to CreatePortfolioSiteItemTags (20151125141154)
20477
+  (0.0ms) begin transaction
20478
+  (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)
20479
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125141154"]]
20480
+  (0.5ms) commit transaction
20481
+ Migrating to CreatePortfolioSiteItemTagsItems (20151125151535)
20482
+  (0.0ms) begin transaction
20483
+  (0.3ms) CREATE TABLE "portfolio_site_item_tags_items" ("site_item_id" integer, "site_item_tag_id" integer)
20484
+  (0.1ms) CREATE INDEX "index_portfolio_site_item_tags_items_on_site_item_id" ON "portfolio_site_item_tags_items" ("site_item_id")
20485
+  (0.0ms) SELECT sql
20486
+ FROM sqlite_master
20487
+ WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'
20488
+ UNION ALL
20489
+ SELECT sql
20490
+ FROM sqlite_temp_master
20491
+ WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'
20492
+
20493
+  (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")
20494
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151125151535"]]
20495
+  (0.6ms) commit transaction
20496
+ Migrating to AddPublicToPortfolioSiteItem (20151203105347)
20497
+  (0.1ms) begin transaction
20498
+  (0.3ms) ALTER TABLE "portfolio_site_items" ADD "public" boolean DEFAULT 'f'
20499
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151203105347"]]
20500
+  (0.5ms) commit transaction
20501
+ Migrating to AddTypeToSiteItem (20160126162607)
20502
+  (0.0ms) begin transaction
20503
+  (0.4ms) ALTER TABLE "portfolio_site_items" ADD "type" varchar
20504
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160126162607"]]
20505
+  (0.5ms) commit transaction
20506
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20507
+  (0.1ms)  SELECT sql
20508
+ FROM sqlite_master
20509
+ WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index'
20510
+ UNION ALL
20511
+ SELECT sql
20512
+ FROM sqlite_temp_master
20513
+ WHERE name='index_portfolio_admin_users_on_reset_password_token' AND type='index'
20514
+ 
20515
+  (0.1ms) SELECT sql
20516
+ FROM sqlite_master
20517
+ WHERE name='index_portfolio_admin_users_on_email' AND type='index'
20518
+ UNION ALL
20519
+ SELECT sql
20520
+ FROM sqlite_temp_master
20521
+ WHERE name='index_portfolio_admin_users_on_email' AND type='index'
20522
+
20523
+  (0.1ms)  SELECT sql
20524
+ FROM sqlite_master
20525
+ WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index'
20526
+ UNION ALL
20527
+ SELECT sql
20528
+ FROM sqlite_temp_master
20529
+ WHERE name='index_portfolio_site_item_images_on_site_item_id' AND type='index'
20530
+ 
20531
+  (0.4ms) SELECT sql
20532
+ FROM sqlite_master
20533
+ WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index'
20534
+ UNION ALL
20535
+ SELECT sql
20536
+ FROM sqlite_temp_master
20537
+ WHERE name='index_portfolio_site_item_tags_items_on_site_item_tag_id' AND type='index'
20538
+
20539
+  (0.1ms)  SELECT sql
20540
+ FROM sqlite_master
20541
+ WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'
20542
+ UNION ALL
20543
+ SELECT sql
20544
+ FROM sqlite_temp_master
20545
+ WHERE name='index_portfolio_site_item_tags_items_on_site_item_id' AND type='index'
20546
+ 
20547
+  (0.1ms) SELECT sql
20548
+ FROM sqlite_master
20549
+ WHERE name='index_portfolio_site_items_on_site_id' AND type='index'
20550
+ UNION ALL
20551
+ SELECT sql
20552
+ FROM sqlite_temp_master
20553
+ WHERE name='index_portfolio_site_items_on_site_id' AND type='index'
20554
+
20555
+  (0.1ms)  SELECT sql
20556
+ FROM sqlite_master
20557
+ WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index'
20558
+ UNION ALL
20559
+ SELECT sql
20560
+ FROM sqlite_temp_master
20561
+ WHERE name='index_portfolio_site_menu_links_on_site_id' AND type='index'
20562
+ 
20563
+  (0.1ms) SELECT sql
20564
+ FROM sqlite_master
20565
+ WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index'
20566
+ UNION ALL
20567
+ SELECT sql
20568
+ FROM sqlite_temp_master
20569
+ WHERE name='index_portfolio_site_social_links_on_social_link_id' AND type='index'
20570
+
20571
+  (0.1ms)  SELECT sql
20572
+ FROM sqlite_master
20573
+ WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'
20574
+ UNION ALL
20575
+ SELECT sql
20576
+ FROM sqlite_temp_master
20577
+ WHERE name='index_portfolio_site_social_links_on_site_id' AND type='index'
20578
+ 
20579
+  (0.1ms) SELECT sql
20580
+ FROM sqlite_master
20581
+ WHERE name='index_portfolio_sites_on_key' AND type='index'
20582
+ UNION ALL
20583
+ SELECT sql
20584
+ FROM sqlite_temp_master
20585
+ WHERE name='index_portfolio_sites_on_key' AND type='index'
20586
+
20587
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20588
+  (0.1ms) begin transaction
20589
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
20590
+ Parameters: {"site_id"=>"0"}
20591
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
20592
+ Rendered text template (0.0ms)
20593
+  (0.1ms) rollback transaction
20594
+  (0.1ms) begin transaction
20595
+  (0.1ms) SAVEPOINT active_record_1
20596
+ Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'tina_kemmer@willbogisich.name' LIMIT 1
20597
+ SQL (0.5ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "tina_kemmer@willbogisich.name"], ["encrypted_password", "$2a$04$TyV6MlT73IEGepRzY6X07OAcaKMZms0YfDckV1JE1Klv85l/YGe2a"], ["created_at", "2016-01-29 18:21:30.798972"], ["updated_at", "2016-01-29 18:21:30.798972"]]
20598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20599
+  (0.1ms) SAVEPOINT active_record_1
20600
+ SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lyla Marquardt"], ["job_title", "Senior Optimization Agent"], ["greetings", "Accusamus a in ut voluptas deleniti sit ea asperiores."], ["summary", "Nisi facere sint in enim aperiam voluptate. Quibusdam saepe animi cumque molestias aut. Eaque voluptas tenetur debitis soluta quibusdam unde exercitationem. Corporis enim vitae maxime. Eum dolorem deserunt reprehenderit possimus vel."], ["key", "lyla_marquardt"], ["created_at", "2016-01-29 18:21:30.886064"], ["updated_at", "2016-01-29 18:21:30.886064"]]
20601
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20602
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
20603
+ Parameters: {"site_id"=>"1"}
20604
+ 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]]
20605
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
20606
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.3ms)
20607
+ Completed 200 OK in 11ms (Views: 5.7ms | ActiveRecord: 0.3ms)
20608
+  (1.5ms) rollback transaction
20609
+  (0.1ms) begin transaction
20610
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
20611
+ Parameters: {"site_id"=>"0"}
20612
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
20613
+ Rendered text template (0.0ms)
20614
+  (0.0ms) rollback transaction
20615
+  (0.0ms) begin transaction
20616
+  (0.0ms) SAVEPOINT active_record_1
20617
+ Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'tina_kemmer@willbogisich.name' LIMIT 1
20618
+ SQL (0.3ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "tina_kemmer@willbogisich.name"], ["encrypted_password", "$2a$04$Q0BA8qF.JSOFJTJsEP//DeKV7WsZrMQoi2kBujx3kpRWsHfPHbY.2"], ["created_at", "2016-01-29 18:21:30.909139"], ["updated_at", "2016-01-29 18:21:30.909139"]]
20619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20620
+  (0.1ms) SAVEPOINT active_record_1
20621
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jana Pfeffer"], ["job_title", "Central Tactics Representative"], ["greetings", "Dolore voluptas omnis illo."], ["summary", "Laudantium eum magnam nihil officiis ducimus aut. Amet voluptate repellendus provident qui repellat necessitatibus. Alias et et quasi qui modi iusto adipisci. Voluptas eos laboriosam atque maxime voluptate facere."], ["key", "jana_pfeffer"], ["created_at", "2016-01-29 18:21:30.911970"], ["updated_at", "2016-01-29 18:21:30.911970"]]
20622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20623
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
20624
+ Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"}
20625
+ 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]]
20626
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
20627
+  (0.1ms) SAVEPOINT active_record_1
20628
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
20629
+ 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 18:21:30.932463"], ["updated_at", "2016-01-29 18:21:30.932463"]]
20630
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20631
+ Redirected to http://test.host/admin/sites/1/site_projects/1/edit
20632
+ Completed 302 Found in 21ms (ActiveRecord: 0.5ms)
20633
+  (0.6ms) rollback transaction
20634
+  (0.1ms) begin transaction
20635
+ Processing by Portfolio::Admin::SitesController#index as HTML
20636
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
20637
+ Rendered text template (0.0ms)
20638
+  (0.1ms) rollback transaction
20639
+  (0.1ms) begin transaction
20640
+  (0.0ms) SAVEPOINT active_record_1
20641
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Brooks Zulauf"], ["job_title", "Principal Brand Supervisor"], ["greetings", "Consequatur dolores fugiat sed deleniti voluptatem."], ["summary", "Odit laboriosam doloribus. Laboriosam ea iste sint in est ipsum iusto. Ut eum nihil quis."], ["key", "brooks_zulauf"], ["created_at", "2016-01-29 18:21:30.944244"], ["updated_at", "2016-01-29 18:21:30.944244"]]
20642
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20643
+  (0.1ms) SAVEPOINT active_record_1
20644
+ 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-29 18:21:30.962227"], ["updated_at", "2016-01-29 18:21:30.962227"]]
20645
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20646
+  (0.4ms) rollback transaction
20647
+  (0.1ms) begin transaction
20648
+  (0.0ms) SAVEPOINT active_record_1
20649
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Michele Batz"], ["job_title", "Principal Group Strategist"], ["greetings", "Et non qui ab omnis labore voluptatibus autem."], ["summary", "Perspiciatis illo similique odio et. Vel et sit rerum velit commodi iste. Doloremque dolor blanditiis voluptatem. Temporibus eos reprehenderit et quia."], ["key", "michele_batz"], ["created_at", "2016-01-29 18:21:30.968782"], ["updated_at", "2016-01-29 18:21:30.968782"]]
20650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20651
+  (0.0ms) SAVEPOINT active_record_1
20652
+ 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 18:21:30.970833"], ["updated_at", "2016-01-29 18:21:30.970833"]]
20653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20654
+  (0.1ms) SAVEPOINT active_record_1
20655
+ SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Desmond Boehm"], ["job_title", "Human Interactions Technician"], ["greetings", "Minus quo aut soluta repudiandae ullam sit."], ["summary", "Omnis corporis et consequatur aut. Quidem sit numquam. Nesciunt molestiae expedita harum debitis aliquid quia. Voluptatum ut veritatis aliquam. Quo culpa omnis magni."], ["key", "desmond_boehm"], ["created_at", "2016-01-29 18:21:30.974270"], ["updated_at", "2016-01-29 18:21:30.974270"]]
20656
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20657
+  (0.0ms) SAVEPOINT active_record_1
20658
+ 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 18:21:30.976269"], ["updated_at", "2016-01-29 18:21:30.976269"]]
20659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20660
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild')
20661
+ 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
20662
+  (0.5ms) rollback transaction
20663
+  (0.1ms) begin transaction
20664
+  (0.1ms) SAVEPOINT active_record_1
20665
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Muhammad Wisozk III"], ["job_title", "Human Creative Orchestrator"], ["greetings", "Eos et cupiditate velit earum."], ["summary", "Quis et eveniet quasi. Nisi optio nihil iste dicta ut qui et. Quidem eos rem id quia. Et assumenda ab."], ["key", "muhammad_wisozk_iii"], ["created_at", "2016-01-29 18:21:30.985179"], ["updated_at", "2016-01-29 18:21:30.985179"]]
20666
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20667
+  (0.0ms) SAVEPOINT active_record_1
20668
+ 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 18:21:30.987725"], ["updated_at", "2016-01-29 18:21:30.987725"]]
20669
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20670
+  (0.5ms) rollback transaction
20671
+  (0.1ms) begin transaction
20672
+  (0.1ms) SAVEPOINT active_record_1
20673
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Bailey White"], ["job_title", "Principal Metrics Technician"], ["greetings", "Iure ipsum omnis maiores tempore."], ["summary", "Eos natus ullam ducimus. Quis ut facere autem excepturi voluptatem nisi nihil. Voluptatem voluptas facilis sunt reprehenderit qui at labore. Ut voluptas sed in rem. Molestiae qui quae sint illum aut facilis eveniet."], ["key", "mrs_bailey_white"], ["created_at", "2016-01-29 18:21:30.993986"], ["updated_at", "2016-01-29 18:21:30.993986"]]
20674
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20675
+  (0.1ms) SAVEPOINT active_record_1
20676
+ 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-29 18:21:30.996975"], ["updated_at", "2016-01-29 18:21:30.996975"]]
20677
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20678
+  (0.5ms) rollback transaction
20679
+  (0.1ms) begin transaction
20680
+  (0.1ms) SAVEPOINT active_record_1
20681
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Elwin Emard"], ["job_title", "International Infrastructure Consultant"], ["greetings", "Accusamus consequatur asperiores eveniet voluptas."], ["summary", "Et eum consequuntur molestiae possimus eius. Cum sed fuga omnis blanditiis sed. Soluta reprehenderit id tempore vel. Sed nulla deleniti omnis labore."], ["key", "dr_elwin_emard"], ["created_at", "2016-01-29 18:21:31.002189"], ["updated_at", "2016-01-29 18:21:31.002189"]]
20682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20683
+  (0.1ms) SAVEPOINT active_record_1
20684
+ 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 18:21:31.004353"], ["updated_at", "2016-01-29 18:21:31.004353"]]
20685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20686
+  (0.5ms) rollback transaction
20687
+  (0.1ms) begin transaction
20688
+  (0.0ms) SAVEPOINT active_record_1
20689
+ SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Leopold Kuphal"], ["job_title", "Investor Infrastructure Assistant"], ["greetings", "Beatae voluptas dicta modi quis nesciunt maxime."], ["summary", "Quia illo earum voluptatibus molestiae sequi asperiores debitis. Dolores adipisci mollitia sed architecto facilis. Eius voluptas odio quo consequatur qui. Non assumenda laborum odio repudiandae molestias nam."], ["key", "leopold_kuphal"], ["created_at", "2016-01-29 18:21:31.008886"], ["updated_at", "2016-01-29 18:21:31.008886"]]
20690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20691
+  (0.0ms) SAVEPOINT active_record_1
20692
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iusto"], ["key", "iusto"], ["created_at", "2016-01-29 18:21:31.013457"], ["updated_at", "2016-01-29 18:21:31.013457"]]
20693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20694
+  (0.0ms) SAVEPOINT active_record_1
20695
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-29 18:21:31.015467"], ["updated_at", "2016-01-29 18:21:31.015467"]]
20696
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20697
+  (0.0ms) SAVEPOINT active_record_1
20698
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quaerat"], ["key", "quaerat"], ["created_at", "2016-01-29 18:21:31.020761"], ["updated_at", "2016-01-29 18:21:31.020761"]]
20699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20700
+  (0.1ms) SAVEPOINT active_record_1
20701
+ 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 Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:21:31.040841"], ["updated_at", "2016-01-29 18:21:31.040841"]]
20702
+ 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]]
20703
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20704
+  (0.0ms) SAVEPOINT active_record_1
20705
+ SQL (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 Aluminum Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:21:31.044388"], ["updated_at", "2016-01-29 18:21:31.044388"]]
20706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20707
+  (0.1ms) SAVEPOINT active_record_1
20708
+ 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", "Awesome Wooden Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:21:31.047330"], ["updated_at", "2016-01-29 18:21:31.047330"]]
20709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20710
+  (0.1ms) SAVEPOINT active_record_1
20711
+ SQL (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 Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:21:31.050737"], ["updated_at", "2016-01-29 18:21:31.050737"]]
20712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20713
+  (0.5ms) rollback transaction
20714
+  (0.1ms) begin transaction
20715
+  (0.0ms) SAVEPOINT active_record_1
20716
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Granville Kuhic"], ["job_title", "Corporate Applications Designer"], ["greetings", "Consectetur et quis libero modi qui."], ["summary", "Tempora ut dolorum. Totam modi earum. Et fugiat reiciendis impedit consequatur rem voluptatem. Vel error voluptatem consequatur natus."], ["key", "granville_kuhic"], ["created_at", "2016-01-29 18:21:31.072779"], ["updated_at", "2016-01-29 18:21:31.072779"]]
20717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20718
+  (0.0ms) SAVEPOINT active_record_1
20719
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "architecto"], ["key", "architecto"], ["created_at", "2016-01-29 18:21:31.074903"], ["updated_at", "2016-01-29 18:21:31.074903"]]
20720
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20721
+  (0.0ms) SAVEPOINT active_record_1
20722
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "optio"], ["key", "optio"], ["created_at", "2016-01-29 18:21:31.076491"], ["updated_at", "2016-01-29 18:21:31.076491"]]
20723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20724
+  (0.0ms) SAVEPOINT active_record_1
20725
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fugit"], ["key", "fugit"], ["created_at", "2016-01-29 18:21:31.077871"], ["updated_at", "2016-01-29 18:21:31.077871"]]
20726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20727
+  (0.0ms) SAVEPOINT active_record_1
20728
+ 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 Marble Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:21:31.080795"], ["updated_at", "2016-01-29 18:21:31.080795"]]
20729
+ 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]]
20730
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20731
+  (0.0ms) SAVEPOINT active_record_1
20732
+ SQL (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-29 18:21:31.084792"], ["updated_at", "2016-01-29 18:21:31.084792"]]
20733
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20734
+  (0.1ms) SAVEPOINT active_record_1
20735
+ SQL (0.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 Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:21:31.086919"], ["updated_at", "2016-01-29 18:21:31.086919"]]
20736
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20737
+  (0.0ms) SAVEPOINT active_record_1
20738
+ SQL (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 Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:21:31.088781"], ["updated_at", "2016-01-29 18:21:31.088781"]]
20739
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20740
+ Portfolio::SiteProject Load (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]]
20741
+  (0.6ms) rollback transaction
20742
+  (0.1ms) begin transaction
20743
+  (0.0ms) SAVEPOINT active_record_1
20744
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Carlie Yost"], ["job_title", "Central Operations Administrator"], ["greetings", "Vitae rerum maxime porro."], ["summary", "Dolores consequuntur velit quo est. Dolores et maiores est est et velit. Ipsam labore officiis ea amet. Quae enim reiciendis ea fugiat. Quibusdam ut blanditiis totam nihil."], ["key", "carlie_yost"], ["created_at", "2016-01-29 18:21:31.098637"], ["updated_at", "2016-01-29 18:21:31.098637"]]
20745
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20746
+  (0.0ms) SAVEPOINT active_record_1
20747
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "consequatur"], ["key", "consequatur"], ["created_at", "2016-01-29 18:21:31.100811"], ["updated_at", "2016-01-29 18:21:31.100811"]]
20748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20749
+  (0.0ms) SAVEPOINT active_record_1
20750
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-29 18:21:31.102396"], ["updated_at", "2016-01-29 18:21:31.102396"]]
20751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20752
+  (0.0ms) SAVEPOINT active_record_1
20753
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rem"], ["key", "rem"], ["created_at", "2016-01-29 18:21:31.103701"], ["updated_at", "2016-01-29 18:21:31.103701"]]
20754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20755
+  (0.1ms) SAVEPOINT active_record_1
20756
+ 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 Linen Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:21:31.107693"], ["updated_at", "2016-01-29 18:21:31.107693"]]
20757
+ 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]]
20758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20759
+  (0.0ms) SAVEPOINT active_record_1
20760
+ SQL (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 Cotton Bench"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:21:31.111413"], ["updated_at", "2016-01-29 18:21:31.111413"]]
20761
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20762
+  (0.1ms) SAVEPOINT active_record_1
20763
+ SQL (0.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 Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:21:31.113648"], ["updated_at", "2016-01-29 18:21:31.113648"]]
20764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20765
+  (0.0ms) SAVEPOINT active_record_1
20766
+ 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", "Incredible Cotton Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:21:31.115859"], ["updated_at", "2016-01-29 18:21:31.115859"]]
20767
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20768
+  (0.6ms) rollback transaction
20769
+  (0.1ms) begin transaction
20770
+  (0.0ms) SAVEPOINT active_record_1
20771
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lacy Sanford"], ["job_title", "Senior Research Agent"], ["greetings", "Enim qui vitae corrupti minus possimus a et alias."], ["summary", "Sed alias aliquam aut blanditiis nobis consequatur. Facilis voluptatum ducimus animi. Assumenda adipisci et quidem nulla mollitia odit et. Dolore vitae est aut ut quia aliquam explicabo. Et et cupiditate maiores."], ["key", "lacy_sanford"], ["created_at", "2016-01-29 18:21:31.121957"], ["updated_at", "2016-01-29 18:21:31.121957"]]
20772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20773
+  (0.0ms) SAVEPOINT active_record_1
20774
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "velit"], ["key", "velit"], ["created_at", "2016-01-29 18:21:31.124146"], ["updated_at", "2016-01-29 18:21:31.124146"]]
20775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20776
+  (0.0ms) SAVEPOINT active_record_1
20777
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "enim"], ["key", "enim"], ["created_at", "2016-01-29 18:21:31.125754"], ["updated_at", "2016-01-29 18:21:31.125754"]]
20778
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20779
+  (0.0ms) SAVEPOINT active_record_1
20780
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eum"], ["key", "eum"], ["created_at", "2016-01-29 18:21:31.127806"], ["updated_at", "2016-01-29 18:21:31.127806"]]
20781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20782
+  (0.1ms) SAVEPOINT active_record_1
20783
+ 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 Wool Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:21:31.132193"], ["updated_at", "2016-01-29 18:21:31.132193"]]
20784
+ 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]]
20785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20786
+  (0.0ms) SAVEPOINT active_record_1
20787
+ SQL (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 Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:21:31.135497"], ["updated_at", "2016-01-29 18:21:31.135497"]]
20788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20789
+  (0.0ms) SAVEPOINT active_record_1
20790
+ SQL (0.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 Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:21:31.137351"], ["updated_at", "2016-01-29 18:21:31.137351"]]
20791
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20792
+  (0.0ms) SAVEPOINT active_record_1
20793
+ SQL (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 Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:21:31.139105"], ["updated_at", "2016-01-29 18:21:31.139105"]]
20794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20795
+ 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
20796
+  (0.5ms) rollback transaction
20797
+  (0.1ms) begin transaction
20798
+  (0.0ms) SAVEPOINT active_record_1
20799
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Preston Mitchell"], ["job_title", "Chief Integration Technician"], ["greetings", "Odit quia repellendus ea est ducimus."], ["summary", "Ut dolore et quia iure. Quia provident ullam incidunt esse aut. Et cupiditate aspernatur est ipsam qui ut in."], ["key", "preston_mitchell"], ["created_at", "2016-01-29 18:21:31.145676"], ["updated_at", "2016-01-29 18:21:31.145676"]]
20800
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20801
+  (0.0ms) SAVEPOINT active_record_1
20802
+ SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Marble Bottle"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 18:21:31.148178"], ["updated_at", "2016-01-29 18:21:31.148178"]]
20803
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20804
+  (0.0ms) SAVEPOINT active_record_1
20805
+ SQL (0.1ms) 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-29 18:21:31.151588"], ["updated_at", "2016-01-29 18:21:31.151588"]]
20806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20807
+  (0.0ms) SAVEPOINT active_record_1
20808
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Silk Bench"], ["site_id", 1], ["created_at", "2016-01-29 18:21:31.154008"], ["updated_at", "2016-01-29 18:21:31.154008"]]
20809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20810
+  (0.1ms) SAVEPOINT active_record_1
20811
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Granite Shoes"], ["site_id", 1], ["created_at", "2016-01-29 18:21:31.157032"], ["updated_at", "2016-01-29 18:21:31.157032"]]
20812
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20813
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
20814
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (55.9ms)
20815
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (68.3ms)
20816
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (85.5ms)
20817
+  (0.5ms) rollback transaction
20818
+  (0.1ms) begin transaction
20819
+  (0.0ms) SAVEPOINT active_record_1
20820
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jaylon Balistreri"], ["job_title", "Central Communications Assistant"], ["greetings", "Ea ea et sed."], ["summary", "Molestiae incidunt facere illum velit ea aut sint. Vitae molestiae praesentium. Nostrum facere qui quia error."], ["key", "jaylon_balistreri"], ["created_at", "2016-01-29 18:21:31.259249"], ["updated_at", "2016-01-29 18:21:31.259249"]]
20821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20822
+  (0.0ms) SAVEPOINT active_record_1
20823
+ SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Granite Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 18:21:31.261641"], ["updated_at", "2016-01-29 18:21:31.261641"]]
20824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20825
+  (0.0ms) SAVEPOINT active_record_1
20826
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Iron Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 18:21:31.263842"], ["updated_at", "2016-01-29 18:21:31.263842"]]
20827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20828
+  (0.0ms) SAVEPOINT active_record_1
20829
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Cotton Bag"], ["site_id", 1], ["created_at", "2016-01-29 18:21:31.266099"], ["updated_at", "2016-01-29 18:21:31.266099"]]
20830
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20831
+  (0.0ms) SAVEPOINT active_record_1
20832
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Steel Coat"], ["site_id", 1], ["created_at", "2016-01-29 18:21:31.268822"], ["updated_at", "2016-01-29 18:21:31.268822"]]
20833
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20834
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
20835
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (56.4ms)
20836
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (56.9ms)
20837
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (57.1ms)
20838
+  (1.4ms) rollback transaction
20839
+  (0.1ms) begin transaction
20840
+  (0.0ms) SAVEPOINT active_record_1
20841
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Amaya Beatty"], ["job_title", "Customer Directives Facilitator"], ["greetings", "Facere assumenda veniam officia distinctio."], ["summary", "Illum aut vitae. Voluptatem rem qui velit consequatur dolorem. Accusantium hic minus earum qui. Architecto ea ullam qui tempora autem inventore natus. Deserunt cumque eos beatae."], ["key", "miss_amaya_beatty"], ["created_at", "2016-01-29 18:21:31.332311"], ["updated_at", "2016-01-29 18:21:31.332311"]]
20842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20843
+  (0.0ms) SAVEPOINT active_record_1
20844
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "placeat"], ["key", "placeat"], ["created_at", "2016-01-29 18:21:31.334767"], ["updated_at", "2016-01-29 18:21:31.334767"]]
20845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20846
+  (0.0ms) SAVEPOINT active_record_1
20847
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quaerat"], ["key", "quaerat"], ["created_at", "2016-01-29 18:21:31.336322"], ["updated_at", "2016-01-29 18:21:31.336322"]]
20848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20849
+  (0.0ms) SAVEPOINT active_record_1
20850
+ 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 18:21:31.337574"], ["updated_at", "2016-01-29 18:21:31.337574"]]
20851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20852
+  (0.0ms) SAVEPOINT active_record_1
20853
+ 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 Iron Computer"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:21:31.340649"], ["updated_at", "2016-01-29 18:21:31.340649"]]
20854
+ 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]]
20855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20856
+  (0.0ms) SAVEPOINT active_record_1
20857
+ SQL (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 Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:21:31.343503"], ["updated_at", "2016-01-29 18:21:31.343503"]]
20858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20859
+  (0.0ms) SAVEPOINT active_record_1
20860
+ SQL (0.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 Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:21:31.345219"], ["updated_at", "2016-01-29 18:21:31.345219"]]
20861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20862
+  (0.0ms) SAVEPOINT active_record_1
20863
+ SQL (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 Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:21:31.346914"], ["updated_at", "2016-01-29 18:21:31.346914"]]
20864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20865
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
20866
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (53.2ms)
20867
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (53.6ms)
20868
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (53.8ms)
20869
+  (1.5ms) rollback transaction
20870
+  (0.1ms) begin transaction
20871
+  (0.0ms) SAVEPOINT active_record_1
20872
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bailey Greenfelder"], ["job_title", "Dynamic Identity Liaison"], ["greetings", "Sed magnam dolor mollitia iure recusandae."], ["summary", "Adipisci consequatur magnam qui error nihil. In ut et deserunt est reiciendis. Consequuntur similique ab. Non itaque sit ipsam. Aut dicta expedita esse consequatur quia dolore consequuntur."], ["key", "bailey_greenfelder"], ["created_at", "2016-01-29 18:21:31.406448"], ["updated_at", "2016-01-29 18:21:31.406448"]]
20873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20874
+  (0.0ms) SAVEPOINT active_record_1
20875
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "excepturi"], ["key", "excepturi"], ["created_at", "2016-01-29 18:21:31.408457"], ["updated_at", "2016-01-29 18:21:31.408457"]]
20876
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20877
+  (0.0ms) SAVEPOINT active_record_1
20878
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-29 18:21:31.410010"], ["updated_at", "2016-01-29 18:21:31.410010"]]
20879
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20880
+  (0.0ms) SAVEPOINT active_record_1
20881
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-29 18:21:31.411672"], ["updated_at", "2016-01-29 18:21:31.411672"]]
20882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20883
+  (0.0ms) SAVEPOINT active_record_1
20884
+ 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 Bronze Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:21:31.415251"], ["updated_at", "2016-01-29 18:21:31.415251"]]
20885
+ 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]]
20886
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20887
+  (0.0ms) SAVEPOINT active_record_1
20888
+ SQL (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 Shoes"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:21:31.419230"], ["updated_at", "2016-01-29 18:21:31.419230"]]
20889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20890
+  (0.0ms) SAVEPOINT active_record_1
20891
+ SQL (0.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 Marble Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:21:31.421351"], ["updated_at", "2016-01-29 18:21:31.421351"]]
20892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20893
+  (0.0ms) SAVEPOINT active_record_1
20894
+ SQL (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", 1], ["created_at", "2016-01-29 18:21:31.423293"], ["updated_at", "2016-01-29 18:21:31.423293"]]
20895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20896
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
20897
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (51.8ms)
20898
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (52.3ms)
20899
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (52.6ms)
20900
+  (1.4ms) rollback transaction
20901
+  (0.1ms) begin transaction
20902
+  (0.1ms) SAVEPOINT active_record_1
20903
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Garry Wiza"], ["job_title", "Chief Intranet Strategist"], ["greetings", "Aliquam quo delectus est et."], ["summary", "Aut corrupti tenetur veritatis est eveniet. Cupiditate velit laboriosam similique saepe aut maxime est. Nulla fuga nisi eos asperiores nostrum ut. Cum cupiditate odio. Culpa quam illum tempora velit sed porro unde."], ["key", "garry_wiza"], ["created_at", "2016-01-29 18:21:31.482698"], ["updated_at", "2016-01-29 18:21:31.482698"]]
20904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20905
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
20906
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
20907
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.8ms)
20908
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" 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"]]
20909
+ 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]]
20910
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (7.5ms)
20911
+  (0.3ms) rollback transaction
20912
+  (0.1ms) begin transaction
20913
+  (0.0ms) SAVEPOINT active_record_1
20914
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Simeon Smith"], ["job_title", "Regional Intranet Orchestrator"], ["greetings", "Expedita minus dolores ipsam consequuntur ex."], ["summary", "Sed placeat nisi commodi ut. Maiores nemo dolorum aspernatur corporis autem ut. Nostrum et rerum quibusdam asperiores vel ut et."], ["key", "simeon_smith"], ["created_at", "2016-01-29 18:21:31.511059"], ["updated_at", "2016-01-29 18:21:31.511059"]]
20915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20916
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
20917
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
20918
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.1ms)
20919
+  (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"]]
20920
+ 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]]
20921
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (5.3ms)
20922
+  (0.3ms) rollback transaction
20923
+  (0.1ms) begin transaction
20924
+  (0.1ms) SAVEPOINT active_record_1
20925
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Vance Little"], ["job_title", "Chief Data Planner"], ["greetings", "Voluptas qui iusto cum error."], ["summary", "Asperiores voluptatibus et ut. Veniam accusamus nemo asperiores. Et ut velit. Harum debitis voluptas eum. Aspernatur aliquam rerum consequatur aperiam."], ["key", "vance_little"], ["created_at", "2016-01-29 18:21:31.523247"], ["updated_at", "2016-01-29 18:21:31.523247"]]
20926
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20927
+  (0.0ms) SAVEPOINT active_record_1
20928
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-29 18:21:31.525525"], ["updated_at", "2016-01-29 18:21:31.525525"]]
20929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20930
+  (0.0ms) SAVEPOINT active_record_1
20931
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "mollitia"], ["key", "mollitia"], ["created_at", "2016-01-29 18:21:31.527382"], ["updated_at", "2016-01-29 18:21:31.527382"]]
20932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20933
+  (0.0ms) SAVEPOINT active_record_1
20934
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quibusdam"], ["key", "quibusdam"], ["created_at", "2016-01-29 18:21:31.528892"], ["updated_at", "2016-01-29 18:21:31.528892"]]
20935
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20936
+  (0.1ms) SAVEPOINT active_record_1
20937
+ 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 Linen Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:21:31.532579"], ["updated_at", "2016-01-29 18:21:31.532579"]]
20938
+ 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]]
20939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20940
+  (0.0ms) SAVEPOINT active_record_1
20941
+ SQL (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 Marble Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:21:31.536092"], ["updated_at", "2016-01-29 18:21:31.536092"]]
20942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20943
+  (0.0ms) SAVEPOINT active_record_1
20944
+ SQL (0.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 Plastic Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:21:31.538256"], ["updated_at", "2016-01-29 18:21:31.538256"]]
20945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20946
+  (0.0ms) SAVEPOINT active_record_1
20947
+ SQL (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 Clock"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:21:31.540221"], ["updated_at", "2016-01-29 18:21:31.540221"]]
20948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20949
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
20950
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
20951
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
20952
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (59.1ms)
20953
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (59.4ms)
20954
+  (1.4ms) rollback transaction
20955
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20956
+  (0.2ms) begin transaction
20957
+  (0.1ms) SAVEPOINT active_record_1
20958
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Emelia Wilkinson"], ["job_title", "Direct Solutions Facilitator"], ["greetings", "Qui quaerat maiores incidunt."], ["summary", "Adipisci est et. Quis reprehenderit in magnam vel magni commodi consequatur. Aut eius et. Repellendus ipsum similique."], ["key", "mrs_emelia_wilkinson"], ["created_at", "2016-01-29 18:23:10.712736"], ["updated_at", "2016-01-29 18:23:10.712736"]]
20959
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20960
+  (0.0ms) SAVEPOINT active_record_1
20961
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "commodi"], ["key", "commodi"], ["created_at", "2016-01-29 18:23:10.719775"], ["updated_at", "2016-01-29 18:23:10.719775"]]
20962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20963
+  (0.0ms) SAVEPOINT active_record_1
20964
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-29 18:23:10.722048"], ["updated_at", "2016-01-29 18:23:10.722048"]]
20965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20966
+  (0.1ms) SAVEPOINT active_record_1
20967
+ SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "atque"], ["key", "atque"], ["created_at", "2016-01-29 18:23:10.726394"], ["updated_at", "2016-01-29 18:23:10.726394"]]
20968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20969
+  (0.1ms) SAVEPOINT active_record_1
20970
+ 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 Granite Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:23:10.759086"], ["updated_at", "2016-01-29 18:23:10.759086"]]
20971
+ 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]]
20972
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20973
+  (0.0ms) SAVEPOINT active_record_1
20974
+ SQL (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-29 18:23:10.763529"], ["updated_at", "2016-01-29 18:23:10.763529"]]
20975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20976
+  (0.0ms) SAVEPOINT active_record_1
20977
+ SQL (0.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 Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:23:10.765894"], ["updated_at", "2016-01-29 18:23:10.765894"]]
20978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20979
+  (0.0ms) SAVEPOINT active_record_1
20980
+ SQL (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 Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:23:10.767862"], ["updated_at", "2016-01-29 18:23:10.767862"]]
20981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20982
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
20983
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
20984
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
20985
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (46.6ms)
20986
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (60.2ms)
20987
+  (1.4ms) rollback transaction
20988
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20989
+  (0.1ms) begin transaction
20990
+  (0.1ms) SAVEPOINT active_record_1
20991
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Anastasia Bogisich II"], ["job_title", "Legacy Division Coordinator"], ["greetings", "Consectetur accusamus veniam harum voluptates atque exercitationem."], ["summary", "Provident nam molestias neque amet soluta eius. Temporibus sunt doloremque debitis aliquid illum corporis. Assumenda dolore commodi temporibus ea rem ipsam dolor."], ["key", "anastasia_bogisich_ii"], ["created_at", "2016-01-29 18:23:30.659878"], ["updated_at", "2016-01-29 18:23:30.659878"]]
20992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20993
+  (0.0ms) SAVEPOINT active_record_1
20994
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ad"], ["key", "ad"], ["created_at", "2016-01-29 18:23:30.667097"], ["updated_at", "2016-01-29 18:23:30.667097"]]
20995
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20996
+  (0.0ms) SAVEPOINT active_record_1
20997
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "commodi"], ["key", "commodi"], ["created_at", "2016-01-29 18:23:30.668944"], ["updated_at", "2016-01-29 18:23:30.668944"]]
20998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
20999
+  (0.0ms) SAVEPOINT active_record_1
21000
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quo"], ["key", "quo"], ["created_at", "2016-01-29 18:23:30.672887"], ["updated_at", "2016-01-29 18:23:30.672887"]]
21001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21002
+  (0.0ms) SAVEPOINT active_record_1
21003
+ 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 Granite Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:23:30.702578"], ["updated_at", "2016-01-29 18:23:30.702578"]]
21004
+ 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]]
21005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21006
+  (0.0ms) SAVEPOINT active_record_1
21007
+ SQL (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", 2], ["created_at", "2016-01-29 18:23:30.705860"], ["updated_at", "2016-01-29 18:23:30.705860"]]
21008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21009
+  (0.0ms) SAVEPOINT active_record_1
21010
+ SQL (0.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 Wool Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:23:30.707810"], ["updated_at", "2016-01-29 18:23:30.707810"]]
21011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21012
+  (0.0ms) SAVEPOINT active_record_1
21013
+ SQL (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 Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:23:30.709685"], ["updated_at", "2016-01-29 18:23:30.709685"]]
21014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21015
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21016
+  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21017
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21018
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
21019
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (62.8ms)
21020
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (76.3ms)
21021
+  (1.6ms) rollback transaction
21022
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21023
+  (0.1ms) begin transaction
21024
+  (0.1ms) SAVEPOINT active_record_1
21025
+ SQL (1.0ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ayden Johnson"], ["job_title", "Dynamic Identity Architect"], ["greetings", "Qui velit voluptatum iure qui."], ["summary", "Velit ut omnis et nihil. Nam qui nisi quisquam dignissimos magnam. Dolorem et cum quasi aperiam consequatur. Facere quia minus ut odio optio inventore."], ["key", "ayden_johnson"], ["created_at", "2016-01-29 18:23:55.480488"], ["updated_at", "2016-01-29 18:23:55.480488"]]
21026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21027
+  (0.0ms) SAVEPOINT active_record_1
21028
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptates"], ["key", "voluptates"], ["created_at", "2016-01-29 18:23:55.488084"], ["updated_at", "2016-01-29 18:23:55.488084"]]
21029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21030
+  (0.0ms) SAVEPOINT active_record_1
21031
+ 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 18:23:55.489998"], ["updated_at", "2016-01-29 18:23:55.489998"]]
21032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21033
+  (0.1ms) SAVEPOINT active_record_1
21034
+ SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "accusantium"], ["key", "accusantium"], ["created_at", "2016-01-29 18:23:55.494685"], ["updated_at", "2016-01-29 18:23:55.494685"]]
21035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21036
+  (0.0ms) SAVEPOINT active_record_1
21037
+ 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 Steel Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:23:55.523494"], ["updated_at", "2016-01-29 18:23:55.523494"]]
21038
+ 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]]
21039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21040
+  (0.0ms) SAVEPOINT active_record_1
21041
+ SQL (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 Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:23:55.526737"], ["updated_at", "2016-01-29 18:23:55.526737"]]
21042
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21043
+  (0.0ms) SAVEPOINT active_record_1
21044
+ SQL (0.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-29 18:23:55.528573"], ["updated_at", "2016-01-29 18:23:55.528573"]]
21045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21046
+  (0.0ms) SAVEPOINT active_record_1
21047
+ SQL (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 Plastic Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:23:55.530534"], ["updated_at", "2016-01-29 18:23:55.530534"]]
21048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21049
+  (0.2ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21050
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21051
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21052
+ Portfolio::SiteMenuLink Load (0.1ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21053
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (10.8ms)
21054
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" 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"]]
21055
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
21056
+ 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]]
21057
+ Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21058
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (252.8ms)
21059
+ 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]]
21060
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (303.2ms)
21061
+ 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" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]
21062
+  (1.5ms) rollback transaction
21063
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21064
+  (0.1ms) begin transaction
21065
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
21066
+ Parameters: {"site_id"=>"0"}
21067
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
21068
+ Rendered text template (0.0ms)
21069
+  (0.1ms) rollback transaction
21070
+  (0.1ms) begin transaction
21071
+  (0.1ms) SAVEPOINT active_record_1
21072
+ Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'elise@witting.info' LIMIT 1
21073
+ SQL (0.3ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "elise@witting.info"], ["encrypted_password", "$2a$04$bdSbKB07t/qgd5X8KJ7WOe50MLpTXLo3UIpM2KJ9CV.6UfXNYzd5G"], ["created_at", "2016-01-29 18:24:02.711021"], ["updated_at", "2016-01-29 18:24:02.711021"]]
21074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21075
+  (0.1ms) SAVEPOINT active_record_1
21076
+ SQL (0.7ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Madonna Casper MD"], ["job_title", "Product Paradigm Assistant"], ["greetings", "Et eum vel doloribus minima mollitia quod sit."], ["summary", "Omnis aliquam et amet. Et possimus aliquid voluptatem voluptates odio. Quisquam officia placeat est voluptatem ipsa."], ["key", "madonna_casper_md"], ["created_at", "2016-01-29 18:24:02.793846"], ["updated_at", "2016-01-29 18:24:02.793846"]]
21077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21078
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
21079
+ Parameters: {"site_id"=>"1"}
21080
+ 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]]
21081
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21082
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms)
21083
+ Completed 200 OK in 12ms (Views: 5.5ms | ActiveRecord: 0.3ms)
21084
+  (1.4ms) rollback transaction
21085
+  (0.1ms) begin transaction
21086
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
21087
+ Parameters: {"site_id"=>"0"}
21088
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
21089
+ Rendered text template (0.0ms)
21090
+  (0.1ms) rollback transaction
21091
+  (0.0ms) begin transaction
21092
+  (0.0ms) SAVEPOINT active_record_1
21093
+ Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'elise@witting.info' LIMIT 1
21094
+ SQL (0.2ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "elise@witting.info"], ["encrypted_password", "$2a$04$XJ8s7TzIVVWdTiog/aq0YOuj5c5aOixjT4RHmXd3dCfNizUevf3LG"], ["created_at", "2016-01-29 18:24:02.818185"], ["updated_at", "2016-01-29 18:24:02.818185"]]
21095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21096
+  (0.2ms) SAVEPOINT active_record_1
21097
+ SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gonzalo Beatty"], ["job_title", "Forward Brand Coordinator"], ["greetings", "Dolor eos consequatur recusandae sint dolorem eveniet hic neque."], ["summary", "Voluptatem qui optio dolores. Sint ut eum non enim ipsam. Architecto hic odit velit. Harum debitis commodi. Unde magnam eaque ex ut illum."], ["key", "gonzalo_beatty"], ["created_at", "2016-01-29 18:24:02.821249"], ["updated_at", "2016-01-29 18:24:02.821249"]]
21098
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21099
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
21100
+ Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"}
21101
+ 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]]
21102
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21103
+  (0.1ms) SAVEPOINT active_record_1
21104
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21105
+ 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 18:24:02.842859"], ["updated_at", "2016-01-29 18:24:02.842859"]]
21106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21107
+ Redirected to http://test.host/admin/sites/1/site_projects/1/edit
21108
+ Completed 302 Found in 20ms (ActiveRecord: 0.5ms)
21109
+  (0.7ms) rollback transaction
21110
+  (0.1ms) begin transaction
21111
+ Processing by Portfolio::Admin::SitesController#index as HTML
21112
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
21113
+ Rendered text template (0.0ms)
21114
+  (0.1ms) rollback transaction
21115
+  (0.1ms) begin transaction
21116
+  (0.1ms) SAVEPOINT active_record_1
21117
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Efrain Schoen"], ["job_title", "Chief Configuration Assistant"], ["greetings", "Eum aut dolorem eos corrupti minus sit."], ["summary", "Et officiis perferendis. Temporibus qui voluptas consectetur. Odio enim ut iusto eos aut voluptatem."], ["key", "mr_efrain_schoen"], ["created_at", "2016-01-29 18:24:02.856352"], ["updated_at", "2016-01-29 18:24:02.856352"]]
21118
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21119
+  (0.1ms) SAVEPOINT active_record_1
21120
+ 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 18:24:02.863174"], ["updated_at", "2016-01-29 18:24:02.863174"]]
21121
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21122
+  (0.6ms) rollback transaction
21123
+  (0.1ms) begin transaction
21124
+  (0.1ms) SAVEPOINT active_record_1
21125
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Antonette Daugherty"], ["job_title", "Global Factors Consultant"], ["greetings", "Odit quia ut nihil veritatis ipsum quos."], ["summary", "Nihil laboriosam earum eos iusto. Suscipit ut ab quas aliquid. Eveniet velit quo id ullam voluptatibus praesentium. Placeat vitae qui voluptates animi."], ["key", "antonette_daugherty"], ["created_at", "2016-01-29 18:24:02.869086"], ["updated_at", "2016-01-29 18:24:02.869086"]]
21126
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21127
+  (0.0ms) SAVEPOINT active_record_1
21128
+ 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 18:24:02.871513"], ["updated_at", "2016-01-29 18:24:02.871513"]]
21129
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21130
+  (0.0ms) SAVEPOINT active_record_1
21131
+ SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Marielle Runolfsson"], ["job_title", "National Quality Producer"], ["greetings", "Est excepturi magni animi."], ["summary", "Nostrum qui consequatur sed sit alias ut neque. Repudiandae qui aut. Ad animi et illo repudiandae sed quod. Quisquam iste dolor quaerat. Fugit eos illo eaque."], ["key", "ms_marielle_runolfsson"], ["created_at", "2016-01-29 18:24:02.874654"], ["updated_at", "2016-01-29 18:24:02.874654"]]
21132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21133
+  (0.0ms) SAVEPOINT active_record_1
21134
+ 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 18:24:02.877163"], ["updated_at", "2016-01-29 18:24:02.877163"]]
21135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21136
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild')
21137
+ 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
21138
+  (0.5ms) rollback transaction
21139
+  (0.1ms) begin transaction
21140
+  (0.1ms) SAVEPOINT active_record_1
21141
+ SQL (0.7ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Garland Collier"], ["job_title", "International Identity Coordinator"], ["greetings", "Error nihil laudantium perspiciatis molestiae culpa laborum."], ["summary", "Et fuga ea. Illum quaerat consequatur incidunt veritatis voluptates. Tempore commodi aut magni ratione ullam quae perferendis. Architecto dolorem incidunt laboriosam quia ad quos aut. Laboriosam eius eaque fuga."], ["key", "garland_collier"], ["created_at", "2016-01-29 18:24:02.883898"], ["updated_at", "2016-01-29 18:24:02.883898"]]
21142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21143
+  (0.0ms) SAVEPOINT active_record_1
21144
+ 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 18:24:02.887725"], ["updated_at", "2016-01-29 18:24:02.887725"]]
21145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21146
+  (0.4ms) rollback transaction
21147
+  (0.1ms) begin transaction
21148
+  (0.0ms) SAVEPOINT active_record_1
21149
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ned Wiegand"], ["job_title", "District Integration Consultant"], ["greetings", "Qui quisquam ut et non fuga exercitationem."], ["summary", "Saepe voluptas fuga mollitia itaque. Corrupti maiores et aut quia enim eum quam. Rerum incidunt numquam quidem rerum aspernatur veritatis. Minus ea omnis id est voluptas mollitia neque."], ["key", "ned_wiegand"], ["created_at", "2016-01-29 18:24:02.892058"], ["updated_at", "2016-01-29 18:24:02.892058"]]
21150
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21151
+  (0.0ms) SAVEPOINT active_record_1
21152
+ 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 18:24:02.894270"], ["updated_at", "2016-01-29 18:24:02.894270"]]
21153
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21154
+  (0.6ms) rollback transaction
21155
+  (0.1ms) begin transaction
21156
+  (0.0ms) SAVEPOINT active_record_1
21157
+ SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kris Bernhard III"], ["job_title", "Internal Response Orchestrator"], ["greetings", "Vel quo quae rem."], ["summary", "Consequuntur sed ut aut maiores. Aut cumque neque. Sapiente aut atque molestiae."], ["key", "kris_bernhard_iii"], ["created_at", "2016-01-29 18:24:02.898393"], ["updated_at", "2016-01-29 18:24:02.898393"]]
21158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21159
+  (0.0ms) SAVEPOINT active_record_1
21160
+ 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 18:24:02.900415"], ["updated_at", "2016-01-29 18:24:02.900415"]]
21161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21162
+  (0.4ms) rollback transaction
21163
+  (0.1ms) begin transaction
21164
+  (0.1ms) SAVEPOINT active_record_1
21165
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Janie Goodwin"], ["job_title", "Principal Applications Developer"], ["greetings", "Deserunt delectus architecto sint a est."], ["summary", "Ex et dicta aperiam cum fugit labore. Voluptas necessitatibus praesentium. Voluptatum fugit quaerat rem explicabo. Eum voluptas eos provident ut nulla sed nisi."], ["key", "janie_goodwin"], ["created_at", "2016-01-29 18:24:02.904981"], ["updated_at", "2016-01-29 18:24:02.904981"]]
21166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21167
+  (0.0ms) SAVEPOINT active_record_1
21168
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "id"], ["key", "id"], ["created_at", "2016-01-29 18:24:02.910114"], ["updated_at", "2016-01-29 18:24:02.910114"]]
21169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21170
+  (0.0ms) SAVEPOINT active_record_1
21171
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-29 18:24:02.911973"], ["updated_at", "2016-01-29 18:24:02.911973"]]
21172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21173
+  (0.0ms) SAVEPOINT active_record_1
21174
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-29 18:24:02.916241"], ["updated_at", "2016-01-29 18:24:02.916241"]]
21175
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21176
+  (0.1ms) SAVEPOINT active_record_1
21177
+ 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 Concrete Hat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:24:02.930901"], ["updated_at", "2016-01-29 18:24:02.930901"]]
21178
+ 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]]
21179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21180
+  (0.1ms) SAVEPOINT active_record_1
21181
+ SQL (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 Plate"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:24:02.934182"], ["updated_at", "2016-01-29 18:24:02.934182"]]
21182
+  (0.3ms) RELEASE SAVEPOINT active_record_1
21183
+  (0.1ms) SAVEPOINT active_record_1
21184
+ SQL (0.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 Clock"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:24:02.938188"], ["updated_at", "2016-01-29 18:24:02.938188"]]
21185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21186
+  (0.0ms) SAVEPOINT active_record_1
21187
+ SQL (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 Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:24:02.940335"], ["updated_at", "2016-01-29 18:24:02.940335"]]
21188
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21189
+  (1.6ms) rollback transaction
21190
+  (0.1ms) begin transaction
21191
+  (0.0ms) SAVEPOINT active_record_1
21192
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mallie Crooks"], ["job_title", "Customer Mobility Manager"], ["greetings", "Culpa optio saepe libero dolore accusamus."], ["summary", "Esse ea itaque et non neque pariatur. Labore eos laudantium perspiciatis ea. Non rem saepe perspiciatis velit."], ["key", "mallie_crooks"], ["created_at", "2016-01-29 18:24:02.960775"], ["updated_at", "2016-01-29 18:24:02.960775"]]
21193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21194
+  (0.0ms) SAVEPOINT active_record_1
21195
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "culpa"], ["key", "culpa"], ["created_at", "2016-01-29 18:24:02.962866"], ["updated_at", "2016-01-29 18:24:02.962866"]]
21196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21197
+  (0.0ms) SAVEPOINT active_record_1
21198
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "exercitationem"], ["key", "exercitationem"], ["created_at", "2016-01-29 18:24:02.964623"], ["updated_at", "2016-01-29 18:24:02.964623"]]
21199
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21200
+  (0.0ms) SAVEPOINT active_record_1
21201
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iusto"], ["key", "iusto"], ["created_at", "2016-01-29 18:24:02.966014"], ["updated_at", "2016-01-29 18:24:02.966014"]]
21202
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21203
+  (0.1ms) SAVEPOINT active_record_1
21204
+ 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 Granite Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:24:02.969301"], ["updated_at", "2016-01-29 18:24:02.969301"]]
21205
+ 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]]
21206
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21207
+  (0.0ms) SAVEPOINT active_record_1
21208
+ SQL (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 Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:24:02.972577"], ["updated_at", "2016-01-29 18:24:02.972577"]]
21209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21210
+  (0.0ms) SAVEPOINT active_record_1
21211
+ SQL (0.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 Iron Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:24:02.974410"], ["updated_at", "2016-01-29 18:24:02.974410"]]
21212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21213
+  (0.0ms) SAVEPOINT active_record_1
21214
+ SQL (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 Bronze Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:24:02.976145"], ["updated_at", "2016-01-29 18:24:02.976145"]]
21215
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21216
+ 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]]
21217
+  (0.5ms) rollback transaction
21218
+  (0.1ms) begin transaction
21219
+  (0.1ms) SAVEPOINT active_record_1
21220
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Keshawn Ruecker DVM"], ["job_title", "Global Infrastructure Assistant"], ["greetings", "Dolorem quia accusantium officia."], ["summary", "Iure corporis explicabo. Possimus dolores ratione dolores eos. Sunt nemo odio rerum corrupti. Tempora est iure qui ea deserunt iste molestias. Occaecati facilis vel voluptatem asperiores est quod amet."], ["key", "keshawn_ruecker_dvm"], ["created_at", "2016-01-29 18:24:02.986150"], ["updated_at", "2016-01-29 18:24:02.986150"]]
21221
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21222
+  (0.0ms) SAVEPOINT active_record_1
21223
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dignissimos"], ["key", "dignissimos"], ["created_at", "2016-01-29 18:24:02.988351"], ["updated_at", "2016-01-29 18:24:02.988351"]]
21224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21225
+  (0.0ms) SAVEPOINT active_record_1
21226
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quaerat"], ["key", "quaerat"], ["created_at", "2016-01-29 18:24:02.989965"], ["updated_at", "2016-01-29 18:24:02.989965"]]
21227
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21228
+  (0.0ms) SAVEPOINT active_record_1
21229
+ SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "deleniti"], ["key", "deleniti"], ["created_at", "2016-01-29 18:24:02.991443"], ["updated_at", "2016-01-29 18:24:02.991443"]]
21230
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21231
+  (0.1ms) SAVEPOINT active_record_1
21232
+ 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 Linen Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:24:02.998014"], ["updated_at", "2016-01-29 18:24:02.998014"]]
21233
+ 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]]
21234
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21235
+  (0.1ms) SAVEPOINT active_record_1
21236
+ SQL (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 Computer"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:24:03.013822"], ["updated_at", "2016-01-29 18:24:03.013822"]]
21237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21238
+  (0.0ms) SAVEPOINT active_record_1
21239
+ SQL (0.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 Concrete Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:24:03.015760"], ["updated_at", "2016-01-29 18:24:03.015760"]]
21240
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21241
+  (0.0ms) SAVEPOINT active_record_1
21242
+ SQL (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-29 18:24:03.017565"], ["updated_at", "2016-01-29 18:24:03.017565"]]
21243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21244
+  (0.7ms) rollback transaction
21245
+  (0.1ms) begin transaction
21246
+  (0.0ms) SAVEPOINT active_record_1
21247
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jackeline D'Amore"], ["job_title", "District Infrastructure Engineer"], ["greetings", "Dolores iure fugit voluptatem quo voluptatibus et."], ["summary", "Qui enim inventore et odit qui earum. Exercitationem nihil soluta est corporis perferendis. Voluptas exercitationem nobis itaque aut consequatur cupiditate."], ["key", "jackeline_d_amore"], ["created_at", "2016-01-29 18:24:03.022275"], ["updated_at", "2016-01-29 18:24:03.022275"]]
21248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21249
+  (0.0ms) SAVEPOINT active_record_1
21250
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ex"], ["key", "ex"], ["created_at", "2016-01-29 18:24:03.024362"], ["updated_at", "2016-01-29 18:24:03.024362"]]
21251
+  (0.2ms) RELEASE SAVEPOINT active_record_1
21252
+  (0.0ms) SAVEPOINT active_record_1
21253
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-29 18:24:03.026241"], ["updated_at", "2016-01-29 18:24:03.026241"]]
21254
+  (0.2ms) RELEASE SAVEPOINT active_record_1
21255
+  (0.0ms) SAVEPOINT active_record_1
21256
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eos"], ["key", "eos"], ["created_at", "2016-01-29 18:24:03.027814"], ["updated_at", "2016-01-29 18:24:03.027814"]]
21257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21258
+  (0.1ms) SAVEPOINT active_record_1
21259
+ 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 Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:24:03.031632"], ["updated_at", "2016-01-29 18:24:03.031632"]]
21260
+ 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]]
21261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21262
+  (0.1ms) SAVEPOINT active_record_1
21263
+ SQL (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 Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:24:03.034951"], ["updated_at", "2016-01-29 18:24:03.034951"]]
21264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21265
+  (0.0ms) SAVEPOINT active_record_1
21266
+ SQL (0.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 Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:24:03.037263"], ["updated_at", "2016-01-29 18:24:03.037263"]]
21267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21268
+  (0.0ms) SAVEPOINT active_record_1
21269
+ SQL (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 Bench"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:24:03.039363"], ["updated_at", "2016-01-29 18:24:03.039363"]]
21270
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21271
+ 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
21272
+  (0.5ms) rollback transaction
21273
+  (0.1ms) begin transaction
21274
+  (0.1ms) SAVEPOINT active_record_1
21275
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bettie Ankunding"], ["job_title", "Central Creative Engineer"], ["greetings", "Voluptates officiis maiores sapiente ea commodi."], ["summary", "Aperiam labore quaerat. Voluptatem nostrum optio. Consequuntur dolorum sunt magni eos vero ut aperiam."], ["key", "bettie_ankunding"], ["created_at", "2016-01-29 18:24:03.046187"], ["updated_at", "2016-01-29 18:24:03.046187"]]
21276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21277
+  (0.0ms) SAVEPOINT active_record_1
21278
+ SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Leather Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 18:24:03.048449"], ["updated_at", "2016-01-29 18:24:03.048449"]]
21279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21280
+  (0.0ms) SAVEPOINT active_record_1
21281
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Ergonomic Wool Plate"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 18:24:03.050709"], ["updated_at", "2016-01-29 18:24:03.050709"]]
21282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21283
+  (0.1ms) SAVEPOINT active_record_1
21284
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Wooden Watch"], ["site_id", 1], ["created_at", "2016-01-29 18:24:03.053624"], ["updated_at", "2016-01-29 18:24:03.053624"]]
21285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21286
+  (0.1ms) SAVEPOINT active_record_1
21287
+ SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Plastic Chair"], ["site_id", 1], ["created_at", "2016-01-29 18:24:03.055879"], ["updated_at", "2016-01-29 18:24:03.055879"]]
21288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21289
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21290
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (54.7ms)
21291
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (66.1ms)
21292
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (81.4ms)
21293
+  (1.6ms) rollback transaction
21294
+  (0.1ms) begin transaction
21295
+  (0.1ms) SAVEPOINT active_record_1
21296
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Quinton Hessel"], ["job_title", "District Research Designer"], ["greetings", "Ipsum architecto ea nihil vel."], ["summary", "Nihil culpa eum et placeat consequatur doloremque magnam. Quasi facere similique inventore. Voluptatem reprehenderit rem ea. Modi aspernatur odit placeat maxime. Aut quia molestiae ut sit."], ["key", "quinton_hessel"], ["created_at", "2016-01-29 18:24:03.156321"], ["updated_at", "2016-01-29 18:24:03.156321"]]
21297
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21298
+  (0.0ms) SAVEPOINT active_record_1
21299
+ SQL (0.3ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Rubber Shirt"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 18:24:03.159669"], ["updated_at", "2016-01-29 18:24:03.159669"]]
21300
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21301
+  (0.0ms) SAVEPOINT active_record_1
21302
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Fantastic Cotton Shoes"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 18:24:03.161925"], ["updated_at", "2016-01-29 18:24:03.161925"]]
21303
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21304
+  (0.0ms) SAVEPOINT active_record_1
21305
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Concrete Knife"], ["site_id", 1], ["created_at", "2016-01-29 18:24:03.164035"], ["updated_at", "2016-01-29 18:24:03.164035"]]
21306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21307
+  (0.0ms) SAVEPOINT active_record_1
21308
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Bronze Bench"], ["site_id", 1], ["created_at", "2016-01-29 18:24:03.166078"], ["updated_at", "2016-01-29 18:24:03.166078"]]
21309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21310
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21311
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (68.4ms)
21312
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (68.9ms)
21313
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (69.1ms)
21314
+  (1.4ms) rollback transaction
21315
+  (0.1ms) begin transaction
21316
+  (0.0ms) SAVEPOINT active_record_1
21317
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Reyes Padberg"], ["job_title", "District Accounts Strategist"], ["greetings", "Hic a et et at."], ["summary", "Ducimus explicabo dignissimos consequuntur id quo id aut. Doloribus repellendus explicabo est vel. Laudantium consequatur natus voluptatibus."], ["key", "reyes_padberg"], ["created_at", "2016-01-29 18:24:03.241433"], ["updated_at", "2016-01-29 18:24:03.241433"]]
21318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21319
+  (0.0ms) SAVEPOINT active_record_1
21320
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "reprehenderit"], ["key", "reprehenderit"], ["created_at", "2016-01-29 18:24:03.243443"], ["updated_at", "2016-01-29 18:24:03.243443"]]
21321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21322
+  (0.0ms) SAVEPOINT active_record_1
21323
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptas"], ["key", "voluptas"], ["created_at", "2016-01-29 18:24:03.245016"], ["updated_at", "2016-01-29 18:24:03.245016"]]
21324
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21325
+  (0.0ms) SAVEPOINT active_record_1
21326
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-29 18:24:03.246331"], ["updated_at", "2016-01-29 18:24:03.246331"]]
21327
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21328
+  (0.1ms) SAVEPOINT active_record_1
21329
+ 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 Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:24:03.249463"], ["updated_at", "2016-01-29 18:24:03.249463"]]
21330
+ 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]]
21331
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21332
+  (0.0ms) SAVEPOINT active_record_1
21333
+ SQL (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 Leather Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:24:03.252492"], ["updated_at", "2016-01-29 18:24:03.252492"]]
21334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21335
+  (0.0ms) SAVEPOINT active_record_1
21336
+ SQL (0.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 Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:24:03.254297"], ["updated_at", "2016-01-29 18:24:03.254297"]]
21337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21338
+  (0.0ms) SAVEPOINT active_record_1
21339
+ SQL (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 Car"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:24:03.256012"], ["updated_at", "2016-01-29 18:24:03.256012"]]
21340
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21341
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21342
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (54.8ms)
21343
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (55.4ms)
21344
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (55.6ms)
21345
+  (1.6ms) rollback transaction
21346
+  (0.1ms) begin transaction
21347
+  (0.0ms) SAVEPOINT active_record_1
21348
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Myah Hartmann MD"], ["job_title", "Dynamic Response Officer"], ["greetings", "Eius blanditiis quam et molestias omnis et ut."], ["summary", "Harum illum ut ea reiciendis similique impedit quae. Id consequatur est corporis praesentium amet. Quis nulla voluptas ut sint aliquam."], ["key", "myah_hartmann_md"], ["created_at", "2016-01-29 18:24:03.317431"], ["updated_at", "2016-01-29 18:24:03.317431"]]
21349
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21350
+  (0.0ms) SAVEPOINT active_record_1
21351
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "illo"], ["key", "illo"], ["created_at", "2016-01-29 18:24:03.319806"], ["updated_at", "2016-01-29 18:24:03.319806"]]
21352
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21353
+  (0.0ms) SAVEPOINT active_record_1
21354
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "enim"], ["key", "enim"], ["created_at", "2016-01-29 18:24:03.321826"], ["updated_at", "2016-01-29 18:24:03.321826"]]
21355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21356
+  (0.0ms) SAVEPOINT active_record_1
21357
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nesciunt"], ["key", "nesciunt"], ["created_at", "2016-01-29 18:24:03.323329"], ["updated_at", "2016-01-29 18:24:03.323329"]]
21358
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21359
+  (0.0ms) SAVEPOINT active_record_1
21360
+ 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 Rubber Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:24:03.327014"], ["updated_at", "2016-01-29 18:24:03.327014"]]
21361
+ 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]]
21362
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21363
+  (0.0ms) SAVEPOINT active_record_1
21364
+ 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 Bronze Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:24:03.330644"], ["updated_at", "2016-01-29 18:24:03.330644"]]
21365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21366
+  (0.0ms) SAVEPOINT active_record_1
21367
+ SQL (0.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 Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:24:03.332963"], ["updated_at", "2016-01-29 18:24:03.332963"]]
21368
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21369
+  (0.1ms) SAVEPOINT active_record_1
21370
+ SQL (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 Wool Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:24:03.335662"], ["updated_at", "2016-01-29 18:24:03.335662"]]
21371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21372
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21373
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (50.9ms)
21374
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (51.5ms)
21375
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (51.7ms)
21376
+  (1.5ms) rollback transaction
21377
+  (0.1ms) begin transaction
21378
+  (0.0ms) SAVEPOINT active_record_1
21379
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Coby Kiehn"], ["job_title", "District Creative Strategist"], ["greetings", "Nulla et quo et et corporis exercitationem magnam aliquam."], ["summary", "Velit voluptatem dolorem. Fugit est ut quod ut nulla voluptas. Iste voluptatem ut debitis qui tempore. Qui maiores debitis non non recusandae qui ut. Architecto commodi labore occaecati id non."], ["key", "mrs_coby_kiehn"], ["created_at", "2016-01-29 18:24:03.394105"], ["updated_at", "2016-01-29 18:24:03.394105"]]
21380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21381
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21382
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21383
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms)
21384
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" 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"]]
21385
+ 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]]
21386
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (6.3ms)
21387
+  (0.4ms) rollback transaction
21388
+  (0.1ms) begin transaction
21389
+  (0.0ms) SAVEPOINT active_record_1
21390
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Ashleigh Cronin"], ["job_title", "Internal Mobility Technician"], ["greetings", "Inventore quaerat odit eligendi qui."], ["summary", "Perspiciatis vel sit. Est vel possimus architecto enim. Et ut laborum delectus facere perspiciatis voluptate. Iste excepturi est ad eaque minus quas molestiae. Et nihil sint."], ["key", "mrs_ashleigh_cronin"], ["created_at", "2016-01-29 18:24:03.416915"], ["updated_at", "2016-01-29 18:24:03.416915"]]
21391
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21392
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21393
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21394
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms)
21395
+  (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"]]
21396
+ 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]]
21397
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.7ms)
21398
+  (0.4ms) rollback transaction
21399
+  (0.1ms) begin transaction
21400
+  (0.1ms) SAVEPOINT active_record_1
21401
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Adell Steuber"], ["job_title", "Central Interactions Producer"], ["greetings", "Aut doloremque esse ut."], ["summary", "Nulla quam enim repellat. Eum accusantium ea animi id. Asperiores eaque consequatur earum neque animi qui. Veniam officia odio repudiandae sed."], ["key", "dr_adell_steuber"], ["created_at", "2016-01-29 18:24:03.426793"], ["updated_at", "2016-01-29 18:24:03.426793"]]
21402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21403
+  (0.0ms) SAVEPOINT active_record_1
21404
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "officia"], ["key", "officia"], ["created_at", "2016-01-29 18:24:03.428877"], ["updated_at", "2016-01-29 18:24:03.428877"]]
21405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21406
+  (0.0ms) SAVEPOINT active_record_1
21407
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eum"], ["key", "eum"], ["created_at", "2016-01-29 18:24:03.430396"], ["updated_at", "2016-01-29 18:24:03.430396"]]
21408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21409
+  (0.0ms) SAVEPOINT active_record_1
21410
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sed"], ["key", "sed"], ["created_at", "2016-01-29 18:24:03.431670"], ["updated_at", "2016-01-29 18:24:03.431670"]]
21411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21412
+  (0.0ms) SAVEPOINT active_record_1
21413
+ 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 Steel Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:24:03.434610"], ["updated_at", "2016-01-29 18:24:03.434610"]]
21414
+ 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]]
21415
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21416
+  (0.1ms) SAVEPOINT active_record_1
21417
+ SQL (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 Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:24:03.440281"], ["updated_at", "2016-01-29 18:24:03.440281"]]
21418
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21419
+  (0.0ms) SAVEPOINT active_record_1
21420
+ SQL (0.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-29 18:24:03.442487"], ["updated_at", "2016-01-29 18:24:03.442487"]]
21421
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21422
+  (0.0ms) SAVEPOINT active_record_1
21423
+ SQL (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 Granite Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:24:03.444701"], ["updated_at", "2016-01-29 18:24:03.444701"]]
21424
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21425
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21426
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21427
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21428
+ Portfolio::SiteMenuLink Load (0.1ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21429
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.0ms)
21430
+  (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"]]
21431
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
21432
+ 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]]
21433
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21434
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (233.9ms)
21435
+ 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]]
21436
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (249.6ms)
21437
+ 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" = ? ORDER BY "portfolio_site_items"."id" ASC LIMIT 1 [["site_id", 1], ["public", "t"], ["featured", "t"]]
21438
+  (1.5ms) rollback transaction
21439
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
21440
+  (0.1ms) begin transaction
21441
+  (0.1ms) SAVEPOINT active_record_1
21442
+ SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Payton Senger"], ["job_title", "International Configuration Planner"], ["greetings", "Deleniti adipisci et rerum."], ["summary", "Reprehenderit fuga doloribus ut. Molestias qui explicabo. Ut eum eos sit nemo iste fugit. Recusandae occaecati libero quia saepe vitae quod et."], ["key", "payton_senger"], ["created_at", "2016-01-29 18:24:36.776135"], ["updated_at", "2016-01-29 18:24:36.776135"]]
21443
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21444
+  (0.0ms) SAVEPOINT active_record_1
21445
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "omnis"], ["key", "omnis"], ["created_at", "2016-01-29 18:24:36.783995"], ["updated_at", "2016-01-29 18:24:36.783995"]]
21446
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21447
+  (0.0ms) SAVEPOINT active_record_1
21448
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-29 18:24:36.785834"], ["updated_at", "2016-01-29 18:24:36.785834"]]
21449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21450
+  (0.0ms) SAVEPOINT active_record_1
21451
+ SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "debitis"], ["key", "debitis"], ["created_at", "2016-01-29 18:24:36.789892"], ["updated_at", "2016-01-29 18:24:36.789892"]]
21452
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21453
+  (0.1ms) SAVEPOINT active_record_1
21454
+ 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 Paper Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:24:36.818282"], ["updated_at", "2016-01-29 18:24:36.818282"]]
21455
+ 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]]
21456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21457
+  (0.0ms) SAVEPOINT active_record_1
21458
+ SQL (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 Pants"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:24:36.821529"], ["updated_at", "2016-01-29 18:24:36.821529"]]
21459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21460
+  (0.0ms) SAVEPOINT active_record_1
21461
+ 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 Linen Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:24:36.823530"], ["updated_at", "2016-01-29 18:24:36.823530"]]
21462
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21463
+  (0.1ms) SAVEPOINT active_record_1
21464
+ SQL (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", 1], ["created_at", "2016-01-29 18:24:36.826735"], ["updated_at", "2016-01-29 18:24:36.826735"]]
21465
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21466
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21467
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (19.6ms)
21468
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (34.3ms)
21469
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (47.8ms)
21470
+  (1.4ms) rollback transaction
21471
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21472
+  (0.1ms) begin transaction
21473
+  (0.1ms) SAVEPOINT active_record_1
21474
+ SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Connor Lebsack"], ["job_title", "Forward Implementation Designer"], ["greetings", "Eum a modi excepturi maxime cum consectetur est aut."], ["summary", "Harum itaque consequatur enim dignissimos rerum non ut. Voluptatem est ex tempora esse numquam. In ut aspernatur ut dolore sed consequatur ab. Provident omnis aut ab ea non dolor."], ["key", "connor_lebsack"], ["created_at", "2016-01-29 18:24:48.535729"], ["updated_at", "2016-01-29 18:24:48.535729"]]
21475
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21476
+  (0.1ms) SAVEPOINT active_record_1
21477
+ SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cumque"], ["key", "cumque"], ["created_at", "2016-01-29 18:24:48.544072"], ["updated_at", "2016-01-29 18:24:48.544072"]]
21478
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21479
+  (0.0ms) SAVEPOINT active_record_1
21480
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quisquam"], ["key", "quisquam"], ["created_at", "2016-01-29 18:24:48.546612"], ["updated_at", "2016-01-29 18:24:48.546612"]]
21481
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21482
+  (0.1ms) SAVEPOINT active_record_1
21483
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "doloribus"], ["key", "doloribus"], ["created_at", "2016-01-29 18:24:48.551277"], ["updated_at", "2016-01-29 18:24:48.551277"]]
21484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21485
+  (0.1ms) SAVEPOINT active_record_1
21486
+ 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 Linen Bag"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:24:48.581952"], ["updated_at", "2016-01-29 18:24:48.581952"]]
21487
+ 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]]
21488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21489
+  (0.0ms) SAVEPOINT active_record_1
21490
+ SQL (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 Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:24:48.585690"], ["updated_at", "2016-01-29 18:24:48.585690"]]
21491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21492
+  (0.0ms) SAVEPOINT active_record_1
21493
+ SQL (0.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 Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:24:48.587559"], ["updated_at", "2016-01-29 18:24:48.587559"]]
21494
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21495
+  (0.1ms) SAVEPOINT active_record_1
21496
+ SQL (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 Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:24:48.590427"], ["updated_at", "2016-01-29 18:24:48.590427"]]
21497
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21498
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21499
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (18.6ms)
21500
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (31.8ms)
21501
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (44.8ms)
21502
+  (1.5ms) rollback transaction
21503
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21504
+  (0.1ms) begin transaction
21505
+  (0.0ms) SAVEPOINT active_record_1
21506
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Margaretta Kunze"], ["job_title", "Global Operations Designer"], ["greetings", "Atque nam ipsum quo voluptatum laborum reiciendis porro est."], ["summary", "Delectus eum ut aut facere sequi. Atque consequatur placeat dolores est. Et delectus earum. Quia et soluta dolore non odit eos. Quidem est est et inventore delectus aut."], ["key", "margaretta_kunze"], ["created_at", "2016-01-29 18:25:09.649552"], ["updated_at", "2016-01-29 18:25:09.649552"]]
21507
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21508
+  (0.0ms) SAVEPOINT active_record_1
21509
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "perspiciatis"], ["key", "perspiciatis"], ["created_at", "2016-01-29 18:25:09.656536"], ["updated_at", "2016-01-29 18:25:09.656536"]]
21510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21511
+  (0.0ms) SAVEPOINT active_record_1
21512
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quisquam"], ["key", "quisquam"], ["created_at", "2016-01-29 18:25:09.658369"], ["updated_at", "2016-01-29 18:25:09.658369"]]
21513
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21514
+  (0.1ms) SAVEPOINT active_record_1
21515
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "aliquam"], ["key", "aliquam"], ["created_at", "2016-01-29 18:25:09.663706"], ["updated_at", "2016-01-29 18:25:09.663706"]]
21516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21517
+  (0.1ms) SAVEPOINT active_record_1
21518
+ 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 Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:25:09.693895"], ["updated_at", "2016-01-29 18:25:09.693895"]]
21519
+ 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]]
21520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21521
+  (0.0ms) SAVEPOINT active_record_1
21522
+ SQL (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 Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:25:09.697366"], ["updated_at", "2016-01-29 18:25:09.697366"]]
21523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21524
+  (0.0ms) SAVEPOINT active_record_1
21525
+ SQL (0.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 Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:25:09.699323"], ["updated_at", "2016-01-29 18:25:09.699323"]]
21526
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21527
+  (0.0ms) SAVEPOINT active_record_1
21528
+ SQL (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 Bronze Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:25:09.701236"], ["updated_at", "2016-01-29 18:25:09.701236"]]
21529
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21530
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21531
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.5ms)
21532
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (16.8ms)
21533
+ 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"]]
21534
+  (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"]]
21535
+ Portfolio::SiteProject 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"]]
21536
+ 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]]
21537
+ Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21538
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (246.0ms)
21539
+  (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"]]
21540
+ Portfolio::SiteProject 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"]]
21541
+ 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]]
21542
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21543
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.7ms)
21544
+  (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"]]
21545
+  (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"]]
21546
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.4ms)
21547
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (331.2ms)
21548
+ 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
21549
+ 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"]]
21550
+  (1.6ms) rollback transaction
21551
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21552
+  (0.1ms) begin transaction
21553
+  (0.1ms) rollback transaction
21554
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21555
+  (0.1ms) begin transaction
21556
+  (0.1ms) SAVEPOINT active_record_1
21557
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Coralie Koelpin"], ["job_title", "District Communications Officer"], ["greetings", "Nulla beatae dolorem laboriosam illo aliquam."], ["summary", "Quibusdam alias eligendi voluptatem commodi. Voluptatum molestias modi similique nihil voluptas et velit. Nesciunt id amet hic nemo qui corrupti. Assumenda commodi at sapiente sit quam."], ["key", "coralie_koelpin"], ["created_at", "2016-01-29 18:26:36.372555"], ["updated_at", "2016-01-29 18:26:36.372555"]]
21558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21559
+  (0.0ms) SAVEPOINT active_record_1
21560
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "magni"], ["key", "magni"], ["created_at", "2016-01-29 18:26:36.380296"], ["updated_at", "2016-01-29 18:26:36.380296"]]
21561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21562
+  (0.0ms) SAVEPOINT active_record_1
21563
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eaque"], ["key", "eaque"], ["created_at", "2016-01-29 18:26:36.382309"], ["updated_at", "2016-01-29 18:26:36.382309"]]
21564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21565
+  (0.0ms) SAVEPOINT active_record_1
21566
+ SQL (0.2ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "corporis"], ["key", "corporis"], ["created_at", "2016-01-29 18:26:36.386050"], ["updated_at", "2016-01-29 18:26:36.386050"]]
21567
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21568
+  (0.0ms) SAVEPOINT active_record_1
21569
+ 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 Marble Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:26:36.417724"], ["updated_at", "2016-01-29 18:26:36.417724"]]
21570
+ 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]]
21571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21572
+  (0.0ms) SAVEPOINT active_record_1
21573
+ SQL (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 Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:26:36.420937"], ["updated_at", "2016-01-29 18:26:36.420937"]]
21574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21575
+  (0.0ms) SAVEPOINT active_record_1
21576
+ SQL (0.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 Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:26:36.422805"], ["updated_at", "2016-01-29 18:26:36.422805"]]
21577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21578
+  (0.1ms) SAVEPOINT active_record_1
21579
+ SQL (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 Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:26:36.425171"], ["updated_at", "2016-01-29 18:26:36.425171"]]
21580
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21581
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21582
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21583
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21584
+ Portfolio::SiteMenuLink Load (0.1ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21585
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (8.9ms)
21586
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (23.0ms)
21587
+ 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"]]
21588
+  (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"]]
21589
+ Portfolio::SiteProject 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"]]
21590
+ 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]]
21591
+ Portfolio::Site Load (0.3ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21592
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (243.6ms)
21593
+  (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"]]
21594
+ Portfolio::SiteProject 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"]]
21595
+ 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]]
21596
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21597
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (7.2ms)
21598
+  (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"]]
21599
+  (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"]]
21600
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (1.3ms)
21601
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (329.4ms)
21602
+ 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
21603
+ 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"]]
21604
+  (1.5ms) rollback transaction
21605
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21606
+  (0.1ms) begin transaction
21607
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
21608
+ Parameters: {"site_id"=>"0"}
21609
+ Completed 401 Unauthorized in 8ms (ActiveRecord: 0.0ms)
21610
+ Rendered text template (0.0ms)
21611
+  (0.1ms) rollback transaction
21612
+  (0.1ms) begin transaction
21613
+  (0.1ms) SAVEPOINT active_record_1
21614
+ Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'jalon@stammhomenick.co' LIMIT 1
21615
+ SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "jalon@stammhomenick.co"], ["encrypted_password", "$2a$04$D4Wi4DbbMX3mOcJXFZzYou0LVQROAFE.gmSpxnLwsMh52mMchN9tG"], ["created_at", "2016-01-29 18:26:42.902725"], ["updated_at", "2016-01-29 18:26:42.902725"]]
21616
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21617
+  (0.1ms) SAVEPOINT active_record_1
21618
+ SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Adela Walter"], ["job_title", "Regional Interactions Assistant"], ["greetings", "Quidem ad qui dolorem."], ["summary", "Totam autem dolore harum in ipsum voluptas ex. Vel aliquid rem et consequatur omnis rerum. Vero aspernatur atque. Vero eum sit reprehenderit dolores harum."], ["key", "mr_adela_walter"], ["created_at", "2016-01-29 18:26:42.992444"], ["updated_at", "2016-01-29 18:26:42.992444"]]
21619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21620
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
21621
+ Parameters: {"site_id"=>"1"}
21622
+ 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]]
21623
+ Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21624
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms)
21625
+ Completed 200 OK in 14ms (Views: 6.2ms | ActiveRecord: 0.5ms)
21626
+  (1.3ms) rollback transaction
21627
+  (0.1ms) begin transaction
21628
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
21629
+ Parameters: {"site_id"=>"0"}
21630
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
21631
+ Rendered text template (0.0ms)
21632
+  (0.1ms) rollback transaction
21633
+  (0.0ms) begin transaction
21634
+  (0.1ms) SAVEPOINT active_record_1
21635
+ Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'jalon@stammhomenick.co' LIMIT 1
21636
+ SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "jalon@stammhomenick.co"], ["encrypted_password", "$2a$04$DwiKfy1wrxENBw24.nUmyePwzQbznQ4/FqZJe0oAhkB060mTbFHQu"], ["created_at", "2016-01-29 18:26:43.018572"], ["updated_at", "2016-01-29 18:26:43.018572"]]
21637
+  (0.2ms) RELEASE SAVEPOINT active_record_1
21638
+  (0.1ms) SAVEPOINT active_record_1
21639
+ SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Idell Stiedemann"], ["job_title", "Global Integration Analyst"], ["greetings", "Consequatur voluptate architecto qui nam facilis nisi."], ["summary", "Dolores dolor nam. Incidunt saepe eligendi. Vitae voluptatibus aut. Tempora hic nostrum consequuntur enim facilis. Ab dolor natus."], ["key", "idell_stiedemann"], ["created_at", "2016-01-29 18:26:43.021971"], ["updated_at", "2016-01-29 18:26:43.021971"]]
21640
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21641
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
21642
+ Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"}
21643
+ 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]]
21644
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21645
+  (0.1ms) SAVEPOINT active_record_1
21646
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21647
+ 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 18:26:43.040745"], ["updated_at", "2016-01-29 18:26:43.040745"]]
21648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21649
+ Redirected to http://test.host/admin/sites/1/site_projects/1/edit
21650
+ Completed 302 Found in 19ms (ActiveRecord: 0.5ms)
21651
+  (0.4ms) rollback transaction
21652
+  (0.1ms) begin transaction
21653
+ Processing by Portfolio::Admin::SitesController#index as HTML
21654
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
21655
+ Rendered text template (0.1ms)
21656
+  (0.1ms) rollback transaction
21657
+  (0.0ms) begin transaction
21658
+  (0.0ms) SAVEPOINT active_record_1
21659
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dwight Bauch"], ["job_title", "Corporate Factors Associate"], ["greetings", "Quis sed consectetur dolor esse."], ["summary", "Voluptatem est occaecati qui ad sit. Quas dolor fuga quibusdam quo culpa. Et sed commodi sapiente hic. Itaque pariatur dolores reiciendis possimus soluta numquam. Consequuntur libero reprehenderit sunt iure a."], ["key", "dwight_bauch"], ["created_at", "2016-01-29 18:26:43.051974"], ["updated_at", "2016-01-29 18:26:43.051974"]]
21660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21661
+  (0.1ms) SAVEPOINT active_record_1
21662
+ 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-29 18:26:43.059536"], ["updated_at", "2016-01-29 18:26:43.059536"]]
21663
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21664
+  (0.4ms) rollback transaction
21665
+  (0.1ms) begin transaction
21666
+  (0.1ms) SAVEPOINT active_record_1
21667
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jarred Stroman IV"], ["job_title", "Legacy Brand Officer"], ["greetings", "Ratione voluptatem dolor nihil explicabo voluptas eaque odio."], ["summary", "Velit eius numquam. Odit officia voluptates. Distinctio repellendus sunt rem impedit vel eum. Et vel excepturi id. Et facilis qui ab porro."], ["key", "jarred_stroman_iv"], ["created_at", "2016-01-29 18:26:43.065705"], ["updated_at", "2016-01-29 18:26:43.065705"]]
21668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21669
+  (0.0ms) SAVEPOINT active_record_1
21670
+ 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 18:26:43.067799"], ["updated_at", "2016-01-29 18:26:43.067799"]]
21671
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21672
+  (0.0ms) SAVEPOINT active_record_1
21673
+ SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Destinee Terry"], ["job_title", "Dynamic Configuration Agent"], ["greetings", "Earum libero est quia a."], ["summary", "Quis incidunt consectetur velit adipisci totam quia dolorem. Eos id qui ut quisquam aliquid molestiae. Rerum dolores autem quo."], ["key", "destinee_terry"], ["created_at", "2016-01-29 18:26:43.070510"], ["updated_at", "2016-01-29 18:26:43.070510"]]
21674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21675
+  (0.0ms) SAVEPOINT active_record_1
21676
+ 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 18:26:43.072287"], ["updated_at", "2016-01-29 18:26:43.072287"]]
21677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21678
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild')
21679
+ 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
21680
+  (0.4ms) rollback transaction
21681
+  (0.1ms) begin transaction
21682
+  (0.0ms) SAVEPOINT active_record_1
21683
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Pietro Ratke"], ["job_title", "International Applications Representative"], ["greetings", "Voluptas omnis fugit officia ut temporibus voluptatem dolores."], ["summary", "Earum eligendi et fugiat. Quisquam ex quia eos sit. Odio numquam reprehenderit velit temporibus. Et illo pariatur quis rerum quasi voluptatum et. Doloremque odit voluptatem voluptate ipsam."], ["key", "pietro_ratke"], ["created_at", "2016-01-29 18:26:43.078171"], ["updated_at", "2016-01-29 18:26:43.078171"]]
21684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21685
+  (0.0ms) SAVEPOINT active_record_1
21686
+ 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 18:26:43.080291"], ["updated_at", "2016-01-29 18:26:43.080291"]]
21687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21688
+  (0.4ms) rollback transaction
21689
+  (0.0ms) begin transaction
21690
+  (0.0ms) SAVEPOINT active_record_1
21691
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Joey Kerluke"], ["job_title", "Legacy Operations Developer"], ["greetings", "Hic consectetur qui vero ipsum."], ["summary", "Perspiciatis ut sapiente aut sit consequatur esse sit. Eum aliquid quos. Exercitationem quis iste unde eum est esse saepe. Velit alias facere ipsa. Amet impedit molestiae necessitatibus doloribus."], ["key", "joey_kerluke"], ["created_at", "2016-01-29 18:26:43.084508"], ["updated_at", "2016-01-29 18:26:43.084508"]]
21692
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21693
+  (0.0ms) SAVEPOINT active_record_1
21694
+ 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 18:26:43.087560"], ["updated_at", "2016-01-29 18:26:43.087560"]]
21695
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21696
+  (0.4ms) rollback transaction
21697
+  (0.1ms) begin transaction
21698
+  (0.0ms) SAVEPOINT active_record_1
21699
+ SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Raul Schinner MD"], ["job_title", "Regional Configuration Developer"], ["greetings", "Neque non magnam voluptatibus."], ["summary", "Dignissimos fuga quo beatae. Voluptatum saepe a autem dignissimos sed. Dolorum dolorem fugit accusamus perspiciatis asperiores et est. Et placeat quia provident molestias dolorem itaque adipisci."], ["key", "raul_schinner_md"], ["created_at", "2016-01-29 18:26:43.091640"], ["updated_at", "2016-01-29 18:26:43.091640"]]
21700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21701
+  (0.0ms) SAVEPOINT active_record_1
21702
+ 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 18:26:43.093564"], ["updated_at", "2016-01-29 18:26:43.093564"]]
21703
+  (0.2ms) RELEASE SAVEPOINT active_record_1
21704
+  (0.6ms) rollback transaction
21705
+  (0.1ms) begin transaction
21706
+  (0.0ms) SAVEPOINT active_record_1
21707
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dallas Gulgowski"], ["job_title", "Forward Identity Planner"], ["greetings", "Aliquid commodi natus voluptates ad quia tempora."], ["summary", "Et natus voluptatem. Occaecati qui consequatur adipisci. Nulla voluptatem est. Deleniti facere rem. Quibusdam saepe et labore dolor facere et praesentium."], ["key", "dallas_gulgowski"], ["created_at", "2016-01-29 18:26:43.099682"], ["updated_at", "2016-01-29 18:26:43.099682"]]
21708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21709
+  (0.0ms) SAVEPOINT active_record_1
21710
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "id"], ["key", "id"], ["created_at", "2016-01-29 18:26:43.104604"], ["updated_at", "2016-01-29 18:26:43.104604"]]
21711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21712
+  (0.0ms) SAVEPOINT active_record_1
21713
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nam"], ["key", "nam"], ["created_at", "2016-01-29 18:26:43.106411"], ["updated_at", "2016-01-29 18:26:43.106411"]]
21714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21715
+  (0.0ms) SAVEPOINT active_record_1
21716
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "magni"], ["key", "magni"], ["created_at", "2016-01-29 18:26:43.110277"], ["updated_at", "2016-01-29 18:26:43.110277"]]
21717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21718
+  (0.1ms) SAVEPOINT active_record_1
21719
+ 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 Rubber Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:26:43.125317"], ["updated_at", "2016-01-29 18:26:43.125317"]]
21720
+ 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]]
21721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21722
+  (0.1ms) SAVEPOINT active_record_1
21723
+ 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 Marble Computer"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:26:43.130498"], ["updated_at", "2016-01-29 18:26:43.130498"]]
21724
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21725
+  (0.0ms) SAVEPOINT active_record_1
21726
+ 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 Linen Car"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:26:43.132967"], ["updated_at", "2016-01-29 18:26:43.132967"]]
21727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21728
+  (0.0ms) SAVEPOINT active_record_1
21729
+ SQL (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 Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:26:43.135185"], ["updated_at", "2016-01-29 18:26:43.135185"]]
21730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21731
+  (1.5ms) rollback transaction
21732
+  (0.1ms) begin transaction
21733
+  (0.0ms) SAVEPOINT active_record_1
21734
+ SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Hans Hintz"], ["job_title", "Investor Brand Supervisor"], ["greetings", "Et suscipit perferendis quas maxime aliquam."], ["summary", "Ut beatae harum soluta. Quia dolor sint aut inventore adipisci. Rem iure iusto neque aut voluptate. Eveniet architecto molestias."], ["key", "hans_hintz"], ["created_at", "2016-01-29 18:26:43.155085"], ["updated_at", "2016-01-29 18:26:43.155085"]]
21735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21736
+  (0.0ms) SAVEPOINT active_record_1
21737
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quod"], ["key", "quod"], ["created_at", "2016-01-29 18:26:43.157050"], ["updated_at", "2016-01-29 18:26:43.157050"]]
21738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21739
+  (0.0ms) SAVEPOINT active_record_1
21740
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "reprehenderit"], ["key", "reprehenderit"], ["created_at", "2016-01-29 18:26:43.158673"], ["updated_at", "2016-01-29 18:26:43.158673"]]
21741
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21742
+  (0.0ms) SAVEPOINT active_record_1
21743
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "asperiores"], ["key", "asperiores"], ["created_at", "2016-01-29 18:26:43.160026"], ["updated_at", "2016-01-29 18:26:43.160026"]]
21744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21745
+  (0.1ms) SAVEPOINT active_record_1
21746
+ 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 Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:26:43.163719"], ["updated_at", "2016-01-29 18:26:43.163719"]]
21747
+ 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]]
21748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21749
+  (0.0ms) SAVEPOINT active_record_1
21750
+ SQL (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 Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:26:43.166736"], ["updated_at", "2016-01-29 18:26:43.166736"]]
21751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21752
+  (0.1ms) SAVEPOINT active_record_1
21753
+ SQL (0.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 Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:26:43.168574"], ["updated_at", "2016-01-29 18:26:43.168574"]]
21754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21755
+  (0.0ms) SAVEPOINT active_record_1
21756
+ SQL (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 Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:26:43.170428"], ["updated_at", "2016-01-29 18:26:43.170428"]]
21757
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21758
+ Portfolio::SiteProject Load (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]]
21759
+  (0.6ms) rollback transaction
21760
+  (0.1ms) begin transaction
21761
+  (0.0ms) SAVEPOINT active_record_1
21762
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Miss Tania Larson"], ["job_title", "Human Directives Architect"], ["greetings", "Ipsa et fuga voluptas voluptatum et iure rerum et."], ["summary", "Architecto et consequatur rerum. Et omnis adipisci recusandae quae eum aut. Voluptas impedit aut accusamus."], ["key", "miss_tania_larson"], ["created_at", "2016-01-29 18:26:43.179426"], ["updated_at", "2016-01-29 18:26:43.179426"]]
21763
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21764
+  (0.0ms) SAVEPOINT active_record_1
21765
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rem"], ["key", "rem"], ["created_at", "2016-01-29 18:26:43.181538"], ["updated_at", "2016-01-29 18:26:43.181538"]]
21766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21767
+  (0.0ms) SAVEPOINT active_record_1
21768
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "eum"], ["key", "eum"], ["created_at", "2016-01-29 18:26:43.183296"], ["updated_at", "2016-01-29 18:26:43.183296"]]
21769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21770
+  (0.0ms) SAVEPOINT active_record_1
21771
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "pariatur"], ["key", "pariatur"], ["created_at", "2016-01-29 18:26:43.184876"], ["updated_at", "2016-01-29 18:26:43.184876"]]
21772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21773
+  (0.1ms) SAVEPOINT active_record_1
21774
+ 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 Aluminum Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:26:43.189569"], ["updated_at", "2016-01-29 18:26:43.189569"]]
21775
+ 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]]
21776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21777
+  (0.1ms) SAVEPOINT active_record_1
21778
+ SQL (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 Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:26:43.204957"], ["updated_at", "2016-01-29 18:26:43.204957"]]
21779
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21780
+  (0.1ms) SAVEPOINT active_record_1
21781
+ SQL (0.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 Clock"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:26:43.206998"], ["updated_at", "2016-01-29 18:26:43.206998"]]
21782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21783
+  (0.0ms) SAVEPOINT active_record_1
21784
+ SQL (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 Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:26:43.209032"], ["updated_at", "2016-01-29 18:26:43.209032"]]
21785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21786
+  (0.5ms) rollback transaction
21787
+  (0.1ms) begin transaction
21788
+  (0.0ms) SAVEPOINT active_record_1
21789
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Meagan Lind"], ["job_title", "Global Factors Executive"], ["greetings", "Earum aperiam commodi voluptas est recusandae distinctio atque laudantium."], ["summary", "Similique exercitationem animi. Itaque officiis est natus dolores voluptatem officia. Ut optio et repellendus harum maxime sunt."], ["key", "mrs_meagan_lind"], ["created_at", "2016-01-29 18:26:43.213700"], ["updated_at", "2016-01-29 18:26:43.213700"]]
21790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21791
+  (0.0ms) SAVEPOINT active_record_1
21792
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sunt"], ["key", "sunt"], ["created_at", "2016-01-29 18:26:43.215985"], ["updated_at", "2016-01-29 18:26:43.215985"]]
21793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21794
+  (0.0ms) SAVEPOINT active_record_1
21795
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "in"], ["key", "in"], ["created_at", "2016-01-29 18:26:43.217972"], ["updated_at", "2016-01-29 18:26:43.217972"]]
21796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21797
+  (0.0ms) SAVEPOINT active_record_1
21798
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quae"], ["key", "quae"], ["created_at", "2016-01-29 18:26:43.219509"], ["updated_at", "2016-01-29 18:26:43.219509"]]
21799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21800
+  (0.0ms) SAVEPOINT active_record_1
21801
+ 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 Bronze Coat"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:26:43.222836"], ["updated_at", "2016-01-29 18:26:43.222836"]]
21802
+ 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]]
21803
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21804
+  (0.0ms) SAVEPOINT active_record_1
21805
+ SQL (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 Plate"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:26:43.226078"], ["updated_at", "2016-01-29 18:26:43.226078"]]
21806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21807
+  (0.0ms) SAVEPOINT active_record_1
21808
+ SQL (0.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 Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:26:43.228578"], ["updated_at", "2016-01-29 18:26:43.228578"]]
21809
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21810
+  (0.0ms) SAVEPOINT active_record_1
21811
+ SQL (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 Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:26:43.231917"], ["updated_at", "2016-01-29 18:26:43.231917"]]
21812
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21813
+ 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
21814
+  (0.7ms) rollback transaction
21815
+  (0.1ms) begin transaction
21816
+  (0.0ms) SAVEPOINT active_record_1
21817
+ SQL (0.6ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Gillian Welch DVM"], ["job_title", "Central Brand Planner"], ["greetings", "Illo ut dolores similique recusandae quas voluptas et aut."], ["summary", "Vel rerum consequuntur voluptatibus. Error quod voluptatem. Corrupti quia aut nihil incidunt sunt cupiditate maiores."], ["key", "gillian_welch_dvm"], ["created_at", "2016-01-29 18:26:43.238685"], ["updated_at", "2016-01-29 18:26:43.238685"]]
21818
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21819
+  (0.0ms) SAVEPOINT active_record_1
21820
+ SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Cotton Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 18:26:43.241808"], ["updated_at", "2016-01-29 18:26:43.241808"]]
21821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21822
+  (0.1ms) SAVEPOINT active_record_1
21823
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Iron Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 18:26:43.244584"], ["updated_at", "2016-01-29 18:26:43.244584"]]
21824
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21825
+  (0.2ms) SAVEPOINT active_record_1
21826
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Cotton Keyboard"], ["site_id", 1], ["created_at", "2016-01-29 18:26:43.247417"], ["updated_at", "2016-01-29 18:26:43.247417"]]
21827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21828
+  (0.0ms) SAVEPOINT active_record_1
21829
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Silk Bench"], ["site_id", 1], ["created_at", "2016-01-29 18:26:43.249573"], ["updated_at", "2016-01-29 18:26:43.249573"]]
21830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21831
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21832
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21833
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21834
+ Portfolio::SiteMenuLink Load (0.1ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21835
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (5.8ms)
21836
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (18.8ms)
21837
+ 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"]]
21838
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
21839
+  (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"]]
21840
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
21841
+ 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]]
21842
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21843
+ 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]]
21844
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21845
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (205.1ms)
21846
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (274.3ms)
21847
+ 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"]]
21848
+  (1.4ms) rollback transaction
21849
+  (0.1ms) begin transaction
21850
+  (0.1ms) SAVEPOINT active_record_1
21851
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Adeline Kuphal"], ["job_title", "Product Research Technician"], ["greetings", "Modi vero magni ad et fugit consequatur consequatur sunt."], ["summary", "Cum omnis architecto incidunt. Voluptatum necessitatibus qui molestias ad eos tenetur. Molestiae ex sed vero et repellendus error omnis. Ut deserunt omnis et ut."], ["key", "adeline_kuphal"], ["created_at", "2016-01-29 18:26:43.546420"], ["updated_at", "2016-01-29 18:26:43.546420"]]
21852
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21853
+  (0.1ms) SAVEPOINT active_record_1
21854
+ SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Cotton Bag"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 18:26:43.551565"], ["updated_at", "2016-01-29 18:26:43.551565"]]
21855
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21856
+  (0.1ms) SAVEPOINT active_record_1
21857
+ SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Sleek Rubber Wallet"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 18:26:43.556337"], ["updated_at", "2016-01-29 18:26:43.556337"]]
21858
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21859
+  (0.1ms) SAVEPOINT active_record_1
21860
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Steel Computer"], ["site_id", 1], ["created_at", "2016-01-29 18:26:43.560467"], ["updated_at", "2016-01-29 18:26:43.560467"]]
21861
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21862
+  (0.1ms) SAVEPOINT active_record_1
21863
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Practical Cotton Car"], ["site_id", 1], ["created_at", "2016-01-29 18:26:43.564310"], ["updated_at", "2016-01-29 18:26:43.564310"]]
21864
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21865
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21866
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21867
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21868
+ Portfolio::SiteMenuLink Load (0.1ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21869
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (6.3ms)
21870
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (7.1ms)
21871
+ 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"]]
21872
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
21873
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]]
21874
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
21875
+ 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]]
21876
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21877
+ 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]]
21878
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21879
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.2ms)
21880
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (24.3ms)
21881
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
21882
+  (1.3ms) rollback transaction
21883
+  (0.1ms) begin transaction
21884
+  (0.1ms) SAVEPOINT active_record_1
21885
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ofelia Funk"], ["job_title", "Regional Quality Facilitator"], ["greetings", "Numquam et enim odio veniam doloremque rerum praesentium consequatur."], ["summary", "Atque voluptas est quia est maiores quo. Nihil sapiente omnis quia adipisci rerum qui. Totam ea eius."], ["key", "ofelia_funk"], ["created_at", "2016-01-29 18:26:43.601790"], ["updated_at", "2016-01-29 18:26:43.601790"]]
21886
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21887
+  (0.1ms) SAVEPOINT active_record_1
21888
+ 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 18:26:43.604699"], ["updated_at", "2016-01-29 18:26:43.604699"]]
21889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21890
+  (0.0ms) SAVEPOINT active_record_1
21891
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "veritatis"], ["key", "veritatis"], ["created_at", "2016-01-29 18:26:43.606374"], ["updated_at", "2016-01-29 18:26:43.606374"]]
21892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21893
+  (0.0ms) SAVEPOINT active_record_1
21894
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "libero"], ["key", "libero"], ["created_at", "2016-01-29 18:26:43.607683"], ["updated_at", "2016-01-29 18:26:43.607683"]]
21895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21896
+  (0.0ms) SAVEPOINT active_record_1
21897
+ 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 Linen Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:26:43.610503"], ["updated_at", "2016-01-29 18:26:43.610503"]]
21898
+ 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]]
21899
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21900
+  (0.0ms) SAVEPOINT active_record_1
21901
+ SQL (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 Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:26:43.614131"], ["updated_at", "2016-01-29 18:26:43.614131"]]
21902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21903
+  (0.1ms) SAVEPOINT active_record_1
21904
+ SQL (0.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 Pants"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:26:43.616331"], ["updated_at", "2016-01-29 18:26:43.616331"]]
21905
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21906
+  (0.0ms) SAVEPOINT active_record_1
21907
+ SQL (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 Coat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:26:43.618310"], ["updated_at", "2016-01-29 18:26:43.618310"]]
21908
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21909
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21910
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21911
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21912
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21913
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.7ms)
21914
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.1ms)
21915
+ 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"]]
21916
+  (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"]]
21917
+ Portfolio::SiteProject 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"]]
21918
+ Portfolio::SiteItemImage Exists (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]]
21919
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21920
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.2ms)
21921
+  (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"]]
21922
+ 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"]]
21923
+ Portfolio::SiteItemImage Exists (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]]
21924
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21925
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.8ms)
21926
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
21927
+  (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"]]
21928
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms)
21929
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (15.6ms)
21930
+ 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
21931
+ 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"]]
21932
+  (1.6ms) rollback transaction
21933
+  (0.1ms) begin transaction
21934
+  (0.0ms) SAVEPOINT active_record_1
21935
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Kraig Hegmann"], ["job_title", "Regional Creative Associate"], ["greetings", "Qui tenetur deserunt quia id."], ["summary", "Ullam molestias voluptas voluptas ut sunt corrupti. Quo non dolore minus dicta. Ad nihil omnis magnam voluptate iusto. Quis animi consequatur assumenda rerum quia. Veniam quod animi sed sint perspiciatis aut."], ["key", "kraig_hegmann"], ["created_at", "2016-01-29 18:26:43.641838"], ["updated_at", "2016-01-29 18:26:43.641838"]]
21936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21937
+  (0.1ms) SAVEPOINT active_record_1
21938
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "excepturi"], ["key", "excepturi"], ["created_at", "2016-01-29 18:26:43.644750"], ["updated_at", "2016-01-29 18:26:43.644750"]]
21939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21940
+  (0.0ms) SAVEPOINT active_record_1
21941
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "maiores"], ["key", "maiores"], ["created_at", "2016-01-29 18:26:43.647805"], ["updated_at", "2016-01-29 18:26:43.647805"]]
21942
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21943
+  (0.1ms) SAVEPOINT active_record_1
21944
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "veritatis"], ["key", "veritatis"], ["created_at", "2016-01-29 18:26:43.649655"], ["updated_at", "2016-01-29 18:26:43.649655"]]
21945
+  (0.1ms) RELEASE SAVEPOINT active_record_1
21946
+  (0.1ms) SAVEPOINT active_record_1
21947
+ 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 Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:26:43.653251"], ["updated_at", "2016-01-29 18:26:43.653251"]]
21948
+ 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]]
21949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21950
+  (0.0ms) SAVEPOINT active_record_1
21951
+ SQL (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 Aluminum Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:26:43.656698"], ["updated_at", "2016-01-29 18:26:43.656698"]]
21952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21953
+  (0.0ms) SAVEPOINT active_record_1
21954
+ SQL (0.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 Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:26:43.658680"], ["updated_at", "2016-01-29 18:26:43.658680"]]
21955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21956
+  (0.0ms) SAVEPOINT active_record_1
21957
+ SQL (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 Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:26:43.660516"], ["updated_at", "2016-01-29 18:26:43.660516"]]
21958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21959
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21960
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21961
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21962
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21963
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.6ms)
21964
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.0ms)
21965
+ 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"]]
21966
+  (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"]]
21967
+ 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"]]
21968
+ Portfolio::SiteItemImage Exists (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]]
21969
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21970
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.3ms)
21971
+  (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"]]
21972
+ 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"]]
21973
+ Portfolio::SiteItemImage Exists (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]]
21974
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
21975
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.7ms)
21976
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
21977
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]]
21978
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms)
21979
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.1ms)
21980
+ 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
21981
+ 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"]]
21982
+  (0.6ms) rollback transaction
21983
+  (0.1ms) begin transaction
21984
+  (0.1ms) SAVEPOINT active_record_1
21985
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mrs. Ibrahim Pollich"], ["job_title", "Central Accountability Planner"], ["greetings", "Placeat rem qui cupiditate ex."], ["summary", "Enim esse sunt. Nesciunt sint minus repudiandae. Et voluptatem sunt quaerat soluta fugiat. Voluptates laborum consequatur."], ["key", "mrs_ibrahim_pollich"], ["created_at", "2016-01-29 18:26:43.682520"], ["updated_at", "2016-01-29 18:26:43.682520"]]
21986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21987
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21988
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
21989
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.4ms)
21990
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" 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"]]
21991
+ 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]]
21992
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (6.0ms)
21993
+  (0.4ms) rollback transaction
21994
+  (0.1ms) begin transaction
21995
+  (0.1ms) SAVEPOINT active_record_1
21996
+ SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Amir Nolan"], ["job_title", "Principal Accountability Administrator"], ["greetings", "Magni aut hic et cupiditate."], ["summary", "Cumque itaque eveniet maiores quidem. Autem rerum quia ea doloremque neque qui laudantium. Quas at illo ea repellendus deleniti quaerat fugiat. Dolorem occaecati soluta."], ["key", "amir_nolan"], ["created_at", "2016-01-29 18:26:43.705367"], ["updated_at", "2016-01-29 18:26:43.705367"]]
21997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21998
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
21999
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22000
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms)
22001
+  (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"]]
22002
+ 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]]
22003
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.5ms)
22004
+  (0.4ms) rollback transaction
22005
+  (0.1ms) begin transaction
22006
+  (0.1ms) SAVEPOINT active_record_1
22007
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Destany Predovic"], ["job_title", "Global Identity Manager"], ["greetings", "Error similique cum est."], ["summary", "Est voluptas itaque dolore porro. Illo necessitatibus quisquam inventore. Architecto iure eius vitae rerum similique velit fugiat. Inventore repellendus odio delectus earum facere."], ["key", "destany_predovic"], ["created_at", "2016-01-29 18:26:43.714550"], ["updated_at", "2016-01-29 18:26:43.714550"]]
22008
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22009
+  (0.0ms) SAVEPOINT active_record_1
22010
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-29 18:26:43.716941"], ["updated_at", "2016-01-29 18:26:43.716941"]]
22011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22012
+  (0.0ms) SAVEPOINT active_record_1
22013
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "placeat"], ["key", "placeat"], ["created_at", "2016-01-29 18:26:43.718667"], ["updated_at", "2016-01-29 18:26:43.718667"]]
22014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22015
+  (0.0ms) SAVEPOINT active_record_1
22016
+ 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 18:26:43.720046"], ["updated_at", "2016-01-29 18:26:43.720046"]]
22017
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22018
+  (0.1ms) SAVEPOINT active_record_1
22019
+ 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 Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 18:26:43.723470"], ["updated_at", "2016-01-29 18:26:43.723470"]]
22020
+ 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]]
22021
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22022
+  (0.0ms) SAVEPOINT active_record_1
22023
+ SQL (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 Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 18:26:43.726387"], ["updated_at", "2016-01-29 18:26:43.726387"]]
22024
+  (0.2ms) RELEASE SAVEPOINT active_record_1
22025
+  (0.1ms) SAVEPOINT active_record_1
22026
+ SQL (0.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 Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 18:26:43.730392"], ["updated_at", "2016-01-29 18:26:43.730392"]]
22027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22028
+  (0.0ms) SAVEPOINT active_record_1
22029
+ SQL (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 Plastic Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 18:26:43.732699"], ["updated_at", "2016-01-29 18:26:43.732699"]]
22030
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22031
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22032
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22033
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22034
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22035
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.2ms)
22036
+  (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"]]
22037
+ 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"]]
22038
+ 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]]
22039
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22040
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.2ms)
22041
+ 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]]
22042
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (20.6ms)
22043
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22044
+  (1.4ms) rollback transaction
22045
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22046
+  (0.1ms) begin transaction
22047
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
22048
+ Parameters: {"site_id"=>"0"}
22049
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
22050
+ Rendered text template (0.0ms)
22051
+  (0.1ms) rollback transaction
22052
+  (0.1ms) begin transaction
22053
+  (0.1ms) SAVEPOINT active_record_1
22054
+ Portfolio::AdminUser Exists (0.2ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'eileen.oconner@luettgencummerata.co' LIMIT 1
22055
+ SQL (0.5ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "eileen.oconner@luettgencummerata.co"], ["encrypted_password", "$2a$04$YrMHLHvm0wrsvRnxXnS94e.YROixTSri0Hv7ndfNxeBdjyKkHK4jC"], ["created_at", "2016-01-29 21:51:27.769748"], ["updated_at", "2016-01-29 21:51:27.769748"]]
22056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22057
+  (0.1ms) SAVEPOINT active_record_1
22058
+ SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Dr. Deangelo Kulas"], ["job_title", "Dynamic Response Designer"], ["greetings", "Quo ipsam nesciunt inventore sunt saepe tenetur est est."], ["summary", "Natus odio sit quisquam nihil. Sunt dolore sit sint tenetur explicabo. Quos rem dolorem. Id vel doloremque. Voluptas rerum sit est est."], ["key", "dr_deangelo_kulas"], ["created_at", "2016-01-29 21:51:27.853931"], ["updated_at", "2016-01-29 21:51:27.853931"]]
22059
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22060
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
22061
+ Parameters: {"site_id"=>"1"}
22062
+ 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]]
22063
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22064
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.3ms)
22065
+ Completed 200 OK in 11ms (Views: 5.5ms | ActiveRecord: 0.3ms)
22066
+  (1.6ms) rollback transaction
22067
+  (0.1ms) begin transaction
22068
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
22069
+ Parameters: {"site_id"=>"0"}
22070
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
22071
+ Rendered text template (0.0ms)
22072
+  (0.1ms) rollback transaction
22073
+  (0.1ms) begin transaction
22074
+  (0.0ms) SAVEPOINT active_record_1
22075
+ Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'eileen.oconner@luettgencummerata.co' LIMIT 1
22076
+ SQL (0.3ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "eileen.oconner@luettgencummerata.co"], ["encrypted_password", "$2a$04$pkyukjWTOieY48tuBSGlweTv4tCEpFvvtXBswVeyANaqANjOYu7Oi"], ["created_at", "2016-01-29 21:51:27.877830"], ["updated_at", "2016-01-29 21:51:27.877830"]]
22077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22078
+  (0.1ms) SAVEPOINT active_record_1
22079
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Estefania Veum III"], ["job_title", "Human Marketing Strategist"], ["greetings", "Illum ea iusto sit."], ["summary", "Et accusamus est quaerat ut. Fuga quia doloremque non iusto ut dolor nihil. Iure rem sapiente."], ["key", "estefania_veum_iii"], ["created_at", "2016-01-29 21:51:27.881468"], ["updated_at", "2016-01-29 21:51:27.881468"]]
22080
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22081
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
22082
+ Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"}
22083
+ 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]]
22084
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22085
+  (0.1ms) SAVEPOINT active_record_1
22086
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22087
+ 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 21:51:27.904312"], ["updated_at", "2016-01-29 21:51:27.904312"]]
22088
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22089
+ Redirected to http://test.host/admin/sites/1/site_projects/1/edit
22090
+ Completed 302 Found in 22ms (ActiveRecord: 0.6ms)
22091
+  (1.1ms) rollback transaction
22092
+  (0.1ms) begin transaction
22093
+ Processing by Portfolio::Admin::SitesController#index as HTML
22094
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
22095
+ Rendered text template (0.0ms)
22096
+  (0.1ms) rollback transaction
22097
+  (0.1ms) begin transaction
22098
+  (0.1ms) SAVEPOINT active_record_1
22099
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jesus Schuster DDS"], ["job_title", "Internal Implementation Developer"], ["greetings", "Et fugiat voluptas voluptatum adipisci ea perferendis."], ["summary", "Sint omnis architecto temporibus ducimus ut nemo ut. Laudantium quia qui officiis. Molestiae adipisci laborum. Distinctio quo consectetur a est. Optio doloremque autem ea et veritatis."], ["key", "jesus_schuster_dds"], ["created_at", "2016-01-29 21:51:27.919654"], ["updated_at", "2016-01-29 21:51:27.919654"]]
22100
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22101
+  (0.1ms) SAVEPOINT active_record_1
22102
+ 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 21:51:27.927309"], ["updated_at", "2016-01-29 21:51:27.927309"]]
22103
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22104
+  (0.5ms) rollback transaction
22105
+  (0.1ms) begin transaction
22106
+  (0.0ms) SAVEPOINT active_record_1
22107
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Drew Muller"], ["job_title", "Human Identity Representative"], ["greetings", "Exercitationem eius cupiditate qui unde qui placeat minus."], ["summary", "Consequatur dolorem et minus tempore. Voluptas exercitationem ipsam sunt sequi quo vel. Porro nihil autem quia."], ["key", "drew_muller"], ["created_at", "2016-01-29 21:51:27.932885"], ["updated_at", "2016-01-29 21:51:27.932885"]]
22108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22109
+  (0.0ms) SAVEPOINT active_record_1
22110
+ 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 21:51:27.934937"], ["updated_at", "2016-01-29 21:51:27.934937"]]
22111
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22112
+  (0.0ms) SAVEPOINT active_record_1
22113
+ SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Noemi Renner"], ["job_title", "Investor Usability Administrator"], ["greetings", "Mollitia vel dignissimos odit inventore perferendis nihil aut."], ["summary", "Autem enim quis qui aut ipsa. Excepturi deleniti voluptatem et optio sit ducimus. Pariatur neque ullam maiores consequatur cupiditate et recusandae. Libero aliquid et dolores. Rerum est dolorem voluptate aspernatur inventore."], ["key", "noemi_renner"], ["created_at", "2016-01-29 21:51:27.937812"], ["updated_at", "2016-01-29 21:51:27.937812"]]
22114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22115
+  (0.0ms) SAVEPOINT active_record_1
22116
+ 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 21:51:27.939365"], ["updated_at", "2016-01-29 21:51:27.939365"]]
22117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22118
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild')
22119
+ 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
22120
+  (0.4ms) rollback transaction
22121
+  (0.1ms) begin transaction
22122
+  (0.1ms) SAVEPOINT active_record_1
22123
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ettie Senger"], ["job_title", "Direct Applications Assistant"], ["greetings", "Consequatur ex exercitationem omnis sint esse inventore placeat nihil."], ["summary", "Velit praesentium commodi eius magnam culpa et dolor. Aut velit deserunt neque. Id illum nemo ipsum sapiente enim eaque laudantium. Animi molestiae incidunt et."], ["key", "ettie_senger"], ["created_at", "2016-01-29 21:51:27.945296"], ["updated_at", "2016-01-29 21:51:27.945296"]]
22124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22125
+  (0.0ms) SAVEPOINT active_record_1
22126
+ 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 21:51:27.947367"], ["updated_at", "2016-01-29 21:51:27.947367"]]
22127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22128
+  (0.4ms) rollback transaction
22129
+  (0.1ms) begin transaction
22130
+  (0.0ms) SAVEPOINT active_record_1
22131
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Clementine Hand"], ["job_title", "Internal Assurance Orchestrator"], ["greetings", "Quis dolor voluptatem deleniti sed accusantium."], ["summary", "Doloribus ex aspernatur modi. Vitae reprehenderit porro aliquid incidunt est. Qui aut unde voluptates. Iure quisquam debitis."], ["key", "clementine_hand"], ["created_at", "2016-01-29 21:51:27.951084"], ["updated_at", "2016-01-29 21:51:27.951084"]]
22132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22133
+  (0.0ms) SAVEPOINT active_record_1
22134
+ 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 21:51:27.953253"], ["updated_at", "2016-01-29 21:51:27.953253"]]
22135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22136
+  (0.4ms) rollback transaction
22137
+  (0.1ms) begin transaction
22138
+  (0.0ms) SAVEPOINT active_record_1
22139
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Keenan Daniel DVM"], ["job_title", "Corporate Functionality Officer"], ["greetings", "Ducimus rerum vel temporibus quia non."], ["summary", "Perspiciatis omnis unde voluptatum eaque deleniti eos voluptas. Architecto sequi doloremque. Labore non amet eius dolores ullam."], ["key", "keenan_daniel_dvm"], ["created_at", "2016-01-29 21:51:27.956999"], ["updated_at", "2016-01-29 21:51:27.956999"]]
22140
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22141
+  (0.0ms) SAVEPOINT active_record_1
22142
+ 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 21:51:27.959307"], ["updated_at", "2016-01-29 21:51:27.959307"]]
22143
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22144
+  (0.4ms) rollback transaction
22145
+  (0.1ms) begin transaction
22146
+  (0.1ms) SAVEPOINT active_record_1
22147
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Malika Hahn"], ["job_title", "Legacy Metrics Administrator"], ["greetings", "Itaque praesentium aliquam debitis aliquid ut maiores quasi."], ["summary", "Eligendi quibusdam numquam voluptatem est aliquam illo nemo. Sed quaerat id. Saepe ut sint voluptatem at totam voluptatem. Rerum voluptatibus magnam et et dicta fugit."], ["key", "malika_hahn"], ["created_at", "2016-01-29 21:51:27.965077"], ["updated_at", "2016-01-29 21:51:27.965077"]]
22148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22149
+  (0.1ms) SAVEPOINT active_record_1
22150
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-29 21:51:27.970209"], ["updated_at", "2016-01-29 21:51:27.970209"]]
22151
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22152
+  (0.0ms) SAVEPOINT active_record_1
22153
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "asperiores"], ["key", "asperiores"], ["created_at", "2016-01-29 21:51:27.972150"], ["updated_at", "2016-01-29 21:51:27.972150"]]
22154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22155
+  (0.0ms) SAVEPOINT active_record_1
22156
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quis"], ["key", "quis"], ["created_at", "2016-01-29 21:51:27.976058"], ["updated_at", "2016-01-29 21:51:27.976058"]]
22157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22158
+  (0.1ms) SAVEPOINT active_record_1
22159
+ 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 Plastic Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:51:27.991689"], ["updated_at", "2016-01-29 21:51:27.991689"]]
22160
+ 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]]
22161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22162
+  (0.0ms) SAVEPOINT active_record_1
22163
+ SQL (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 Chair"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:51:27.994857"], ["updated_at", "2016-01-29 21:51:27.994857"]]
22164
+  (0.2ms) RELEASE SAVEPOINT active_record_1
22165
+  (0.1ms) SAVEPOINT active_record_1
22166
+ SQL (0.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 Linen Clock"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:51:27.998604"], ["updated_at", "2016-01-29 21:51:27.998604"]]
22167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22168
+  (0.0ms) SAVEPOINT active_record_1
22169
+ SQL (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 Marble Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:51:28.000655"], ["updated_at", "2016-01-29 21:51:28.000655"]]
22170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22171
+  (0.8ms) rollback transaction
22172
+  (0.1ms) begin transaction
22173
+  (0.0ms) SAVEPOINT active_record_1
22174
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Neha Gaylord"], ["job_title", "Dynamic Integration Orchestrator"], ["greetings", "Sunt qui et et non eveniet."], ["summary", "Accusantium saepe id at molestiae. Iste vitae qui reiciendis sed. Quia est nemo."], ["key", "neha_gaylord"], ["created_at", "2016-01-29 21:51:28.019309"], ["updated_at", "2016-01-29 21:51:28.019309"]]
22175
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22176
+  (0.0ms) SAVEPOINT active_record_1
22177
+ 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 21:51:28.021518"], ["updated_at", "2016-01-29 21:51:28.021518"]]
22178
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22179
+  (0.0ms) SAVEPOINT active_record_1
22180
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "et"], ["key", "et"], ["created_at", "2016-01-29 21:51:28.023182"], ["updated_at", "2016-01-29 21:51:28.023182"]]
22181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22182
+  (0.0ms) SAVEPOINT active_record_1
22183
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "culpa"], ["key", "culpa"], ["created_at", "2016-01-29 21:51:28.024525"], ["updated_at", "2016-01-29 21:51:28.024525"]]
22184
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22185
+  (0.1ms) SAVEPOINT active_record_1
22186
+ 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 Copper Chair"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:51:28.027646"], ["updated_at", "2016-01-29 21:51:28.027646"]]
22187
+ 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]]
22188
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22189
+  (0.0ms) SAVEPOINT active_record_1
22190
+ SQL (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 Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:51:28.030583"], ["updated_at", "2016-01-29 21:51:28.030583"]]
22191
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22192
+  (0.0ms) SAVEPOINT active_record_1
22193
+ SQL (0.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 Bench"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:51:28.032377"], ["updated_at", "2016-01-29 21:51:28.032377"]]
22194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22195
+  (0.0ms) SAVEPOINT active_record_1
22196
+ SQL (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 Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:51:28.034292"], ["updated_at", "2016-01-29 21:51:28.034292"]]
22197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22198
+ Portfolio::SiteProject Load (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]]
22199
+  (0.5ms) rollback transaction
22200
+  (0.1ms) begin transaction
22201
+  (0.0ms) SAVEPOINT active_record_1
22202
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Samantha Wunsch"], ["job_title", "Lead Research Technician"], ["greetings", "Sit occaecati ipsam quo aspernatur qui."], ["summary", "Molestiae officiis quia. Cum odio et error magni atque. Quo iure quidem eos voluptas. Qui repellat amet aliquam."], ["key", "samantha_wunsch"], ["created_at", "2016-01-29 21:51:28.043343"], ["updated_at", "2016-01-29 21:51:28.043343"]]
22203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22204
+  (0.0ms) SAVEPOINT active_record_1
22205
+ 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 21:51:28.045335"], ["updated_at", "2016-01-29 21:51:28.045335"]]
22206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22207
+  (0.0ms) SAVEPOINT active_record_1
22208
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "autem"], ["key", "autem"], ["created_at", "2016-01-29 21:51:28.046922"], ["updated_at", "2016-01-29 21:51:28.046922"]]
22209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22210
+  (0.1ms) SAVEPOINT active_record_1
22211
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ea"], ["key", "ea"], ["created_at", "2016-01-29 21:51:28.048760"], ["updated_at", "2016-01-29 21:51:28.048760"]]
22212
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22213
+  (0.1ms) SAVEPOINT active_record_1
22214
+ 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 Concrete Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:51:28.054913"], ["updated_at", "2016-01-29 21:51:28.054913"]]
22215
+ 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]]
22216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22217
+  (0.1ms) SAVEPOINT active_record_1
22218
+ SQL (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 Knife"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:51:28.069507"], ["updated_at", "2016-01-29 21:51:28.069507"]]
22219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22220
+  (0.0ms) SAVEPOINT active_record_1
22221
+ SQL (0.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 Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:51:28.071511"], ["updated_at", "2016-01-29 21:51:28.071511"]]
22222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22223
+  (0.0ms) SAVEPOINT active_record_1
22224
+ SQL (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 Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:51:28.073354"], ["updated_at", "2016-01-29 21:51:28.073354"]]
22225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22226
+  (0.6ms) rollback transaction
22227
+  (0.1ms) begin transaction
22228
+  (0.1ms) SAVEPOINT active_record_1
22229
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Daphne Feeney"], ["job_title", "District Tactics Associate"], ["greetings", "Consequatur nesciunt facilis odio provident voluptatem iusto aut quia."], ["summary", "Repellat id consequatur error. Repellat beatae at architecto. Modi cupiditate animi eveniet ut."], ["key", "daphne_feeney"], ["created_at", "2016-01-29 21:51:28.077488"], ["updated_at", "2016-01-29 21:51:28.077488"]]
22230
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22231
+  (0.1ms) SAVEPOINT active_record_1
22232
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatibus"], ["key", "voluptatibus"], ["created_at", "2016-01-29 21:51:28.079751"], ["updated_at", "2016-01-29 21:51:28.079751"]]
22233
+  (0.2ms) RELEASE SAVEPOINT active_record_1
22234
+  (0.0ms) SAVEPOINT active_record_1
22235
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "deserunt"], ["key", "deserunt"], ["created_at", "2016-01-29 21:51:28.081624"], ["updated_at", "2016-01-29 21:51:28.081624"]]
22236
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22237
+  (0.1ms) SAVEPOINT active_record_1
22238
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "cum"], ["key", "cum"], ["created_at", "2016-01-29 21:51:28.083479"], ["updated_at", "2016-01-29 21:51:28.083479"]]
22239
+  (0.2ms) RELEASE SAVEPOINT active_record_1
22240
+  (0.1ms) SAVEPOINT active_record_1
22241
+ 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 Paper Table"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:51:28.087410"], ["updated_at", "2016-01-29 21:51:28.087410"]]
22242
+ 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]]
22243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22244
+  (0.0ms) SAVEPOINT active_record_1
22245
+ SQL (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 Clock"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:51:28.090509"], ["updated_at", "2016-01-29 21:51:28.090509"]]
22246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22247
+  (0.0ms) SAVEPOINT active_record_1
22248
+ SQL (0.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 Copper Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:51:28.092578"], ["updated_at", "2016-01-29 21:51:28.092578"]]
22249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22250
+  (0.0ms) SAVEPOINT active_record_1
22251
+ SQL (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 Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:51:28.094570"], ["updated_at", "2016-01-29 21:51:28.094570"]]
22252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22253
+ 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
22254
+  (0.6ms) rollback transaction
22255
+  (0.1ms) begin transaction
22256
+  (0.1ms) SAVEPOINT active_record_1
22257
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Roma Watsica"], ["job_title", "International Tactics Consultant"], ["greetings", "Commodi quia ipsam officiis distinctio qui nisi."], ["summary", "Aut excepturi odio. Rem officiis maxime sit quod doloribus. Ullam placeat neque enim eius illo voluptas."], ["key", "roma_watsica"], ["created_at", "2016-01-29 21:51:28.101528"], ["updated_at", "2016-01-29 21:51:28.101528"]]
22258
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22259
+  (0.0ms) SAVEPOINT active_record_1
22260
+ SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Aerodynamic Wool Shirt"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 21:51:28.104238"], ["updated_at", "2016-01-29 21:51:28.104238"]]
22261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22262
+  (0.0ms) SAVEPOINT active_record_1
22263
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Mediocre Concrete Gloves"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 21:51:28.106530"], ["updated_at", "2016-01-29 21:51:28.106530"]]
22264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22265
+  (0.0ms) SAVEPOINT active_record_1
22266
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Aluminum Shirt"], ["site_id", 1], ["created_at", "2016-01-29 21:51:28.108352"], ["updated_at", "2016-01-29 21:51:28.108352"]]
22267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22268
+  (0.0ms) SAVEPOINT active_record_1
22269
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Leather Pants"], ["site_id", 1], ["created_at", "2016-01-29 21:51:28.110372"], ["updated_at", "2016-01-29 21:51:28.110372"]]
22270
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22271
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22272
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22273
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22274
+ Portfolio::SiteMenuLink Load (0.1ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22275
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (5.8ms)
22276
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (16.9ms)
22277
+ 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"]]
22278
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
22279
+  (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 NULL [["site_id", 1], ["public", "t"]]
22280
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22281
+ 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]]
22282
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22283
+ 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]]
22284
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22285
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (211.4ms)
22286
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (278.7ms)
22287
+ 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"]]
22288
+  (1.5ms) rollback transaction
22289
+  (0.1ms) begin transaction
22290
+  (0.1ms) SAVEPOINT active_record_1
22291
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lucio Wiegand"], ["job_title", "Forward Branding Analyst"], ["greetings", "Iusto ut excepturi sit culpa earum aut repudiandae."], ["summary", "Iusto id sed adipisci non eum et. Distinctio consectetur ipsam totam est a. Incidunt laboriosam illum corrupti impedit aspernatur. Hic aut quaerat nisi illo aut quo sint. Error culpa quo."], ["key", "lucio_wiegand"], ["created_at", "2016-01-29 21:51:28.411998"], ["updated_at", "2016-01-29 21:51:28.411998"]]
22292
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22293
+  (0.1ms) SAVEPOINT active_record_1
22294
+ SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Copper Watch"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 21:51:28.416824"], ["updated_at", "2016-01-29 21:51:28.416824"]]
22295
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22296
+  (0.1ms) SAVEPOINT active_record_1
22297
+ SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Rubber Knife"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 21:51:28.421787"], ["updated_at", "2016-01-29 21:51:28.421787"]]
22298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22299
+  (0.1ms) SAVEPOINT active_record_1
22300
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Linen Shirt"], ["site_id", 1], ["created_at", "2016-01-29 21:51:28.425958"], ["updated_at", "2016-01-29 21:51:28.425958"]]
22301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22302
+  (0.1ms) SAVEPOINT active_record_1
22303
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Bronze Gloves"], ["site_id", 1], ["created_at", "2016-01-29 21:51:28.430064"], ["updated_at", "2016-01-29 21:51:28.430064"]]
22304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22305
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22306
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22307
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22308
+ Portfolio::SiteMenuLink Load (0.1ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22309
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (6.9ms)
22310
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (7.7ms)
22311
+ 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"]]
22312
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
22313
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]]
22314
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22315
+ 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]]
22316
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22317
+ 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]]
22318
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22319
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.1ms)
22320
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (25.4ms)
22321
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22322
+  (1.2ms) rollback transaction
22323
+  (0.1ms) begin transaction
22324
+  (0.1ms) SAVEPOINT active_record_1
22325
+ SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jaylon Strosin"], ["job_title", "Direct Applications Director"], ["greetings", "Adipisci culpa dicta voluptates expedita."], ["summary", "Repellendus totam debitis. Officiis ratione ut consequuntur ut. Necessitatibus vitae natus."], ["key", "jaylon_strosin"], ["created_at", "2016-01-29 21:51:28.464391"], ["updated_at", "2016-01-29 21:51:28.464391"]]
22326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22327
+  (0.0ms) SAVEPOINT active_record_1
22328
+ SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ullam"], ["key", "ullam"], ["created_at", "2016-01-29 21:51:28.466410"], ["updated_at", "2016-01-29 21:51:28.466410"]]
22329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22330
+  (0.0ms) SAVEPOINT active_record_1
22331
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "natus"], ["key", "natus"], ["created_at", "2016-01-29 21:51:28.467889"], ["updated_at", "2016-01-29 21:51:28.467889"]]
22332
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22333
+  (0.1ms) SAVEPOINT active_record_1
22334
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-29 21:51:28.469790"], ["updated_at", "2016-01-29 21:51:28.469790"]]
22335
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22336
+  (0.0ms) SAVEPOINT active_record_1
22337
+ 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 Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:51:28.473299"], ["updated_at", "2016-01-29 21:51:28.473299"]]
22338
+ 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]]
22339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22340
+  (0.1ms) SAVEPOINT active_record_1
22341
+ SQL (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 Plastic Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:51:28.476404"], ["updated_at", "2016-01-29 21:51:28.476404"]]
22342
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22343
+  (0.0ms) SAVEPOINT active_record_1
22344
+ SQL (0.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 Bag"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:51:28.478199"], ["updated_at", "2016-01-29 21:51:28.478199"]]
22345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22346
+  (0.0ms) SAVEPOINT active_record_1
22347
+ SQL (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 Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:51:28.480007"], ["updated_at", "2016-01-29 21:51:28.480007"]]
22348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22349
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22350
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22351
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22352
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22353
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.8ms)
22354
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.2ms)
22355
+ 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"]]
22356
+  (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"]]
22357
+ Portfolio::SiteProject 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"]]
22358
+ Portfolio::SiteItemImage Exists (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]]
22359
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22360
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.1ms)
22361
+  (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"]]
22362
+ 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"]]
22363
+ Portfolio::SiteItemImage Exists (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]]
22364
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22365
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (4.4ms)
22366
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
22367
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]]
22368
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms)
22369
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (18.1ms)
22370
+ 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
22371
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22372
+  (1.4ms) rollback transaction
22373
+  (0.1ms) begin transaction
22374
+  (0.1ms) SAVEPOINT active_record_1
22375
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nelle Spinka"], ["job_title", "International Metrics Planner"], ["greetings", "Nesciunt ratione molestiae voluptatem."], ["summary", "Hic quos perferendis. Fugit iure ad harum at. Ex maiores distinctio odit qui perspiciatis. Architecto ut et. Earum voluptatibus quis."], ["key", "nelle_spinka"], ["created_at", "2016-01-29 21:51:28.505644"], ["updated_at", "2016-01-29 21:51:28.505644"]]
22376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22377
+  (0.0ms) SAVEPOINT active_record_1
22378
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nulla"], ["key", "nulla"], ["created_at", "2016-01-29 21:51:28.507635"], ["updated_at", "2016-01-29 21:51:28.507635"]]
22379
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22380
+  (0.0ms) SAVEPOINT active_record_1
22381
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "animi"], ["key", "animi"], ["created_at", "2016-01-29 21:51:28.509260"], ["updated_at", "2016-01-29 21:51:28.509260"]]
22382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22383
+  (0.0ms) SAVEPOINT active_record_1
22384
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dignissimos"], ["key", "dignissimos"], ["created_at", "2016-01-29 21:51:28.510632"], ["updated_at", "2016-01-29 21:51:28.510632"]]
22385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22386
+  (0.1ms) SAVEPOINT active_record_1
22387
+ 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 Wool Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:51:28.515388"], ["updated_at", "2016-01-29 21:51:28.515388"]]
22388
+ 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]]
22389
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22390
+  (0.0ms) SAVEPOINT active_record_1
22391
+ SQL (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 Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:51:28.518309"], ["updated_at", "2016-01-29 21:51:28.518309"]]
22392
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22393
+  (0.0ms) SAVEPOINT active_record_1
22394
+ SQL (0.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 Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:51:28.520298"], ["updated_at", "2016-01-29 21:51:28.520298"]]
22395
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22396
+  (0.0ms) SAVEPOINT active_record_1
22397
+ SQL (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 Bag"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:51:28.522332"], ["updated_at", "2016-01-29 21:51:28.522332"]]
22398
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22399
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22400
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22401
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22402
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22403
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.6ms)
22404
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.0ms)
22405
+ 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"]]
22406
+  (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"]]
22407
+ 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"]]
22408
+ Portfolio::SiteItemImage Exists (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]]
22409
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22410
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.4ms)
22411
+  (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"]]
22412
+ 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"]]
22413
+ Portfolio::SiteItemImage Exists (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]]
22414
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22415
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.7ms)
22416
+  (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"]]
22417
+  (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"]]
22418
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms)
22419
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (13.5ms)
22420
+ 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
22421
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22422
+  (0.8ms) rollback transaction
22423
+  (0.1ms) begin transaction
22424
+  (0.0ms) SAVEPOINT active_record_1
22425
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Moriah Witting"], ["job_title", "Regional Functionality Planner"], ["greetings", "Odit quia expedita tempore error natus voluptatibus repellat."], ["summary", "Velit qui id. Vitae ratione placeat qui fuga dolorem laudantium qui. Totam eum ex ipsam quod. Quibusdam ipsam molestias enim modi qui rerum quaerat. Tenetur enim quod exercitationem consequuntur debitis neque."], ["key", "moriah_witting"], ["created_at", "2016-01-29 21:51:28.543114"], ["updated_at", "2016-01-29 21:51:28.543114"]]
22426
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22427
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22428
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22429
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)
22430
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" 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"]]
22431
+ 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]]
22432
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (6.1ms)
22433
+  (0.3ms) rollback transaction
22434
+  (0.1ms) begin transaction
22435
+  (0.1ms) SAVEPOINT active_record_1
22436
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Maximillia Gusikowski"], ["job_title", "Central Branding Agent"], ["greetings", "Fugit et possimus nihil ab autem alias quae."], ["summary", "Perspiciatis cumque delectus dolores aliquam nesciunt minus. Modi sint odit quisquam totam et. Sint doloremque repellendus saepe."], ["key", "maximillia_gusikowski"], ["created_at", "2016-01-29 21:51:28.567289"], ["updated_at", "2016-01-29 21:51:28.567289"]]
22437
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22438
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22439
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22440
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.3ms)
22441
+  (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"]]
22442
+ 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]]
22443
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.6ms)
22444
+  (0.5ms) rollback transaction
22445
+  (0.2ms) begin transaction
22446
+  (0.1ms) SAVEPOINT active_record_1
22447
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Treva Herman"], ["job_title", "Legacy Web Director"], ["greetings", "Voluptas aspernatur fugit a et molestias."], ["summary", "Neque aut quam iste amet. Tempora a aut ullam molestias deserunt molestiae repudiandae. Temporibus quibusdam aut veritatis."], ["key", "treva_herman"], ["created_at", "2016-01-29 21:51:28.577306"], ["updated_at", "2016-01-29 21:51:28.577306"]]
22448
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22449
+  (0.0ms) SAVEPOINT active_record_1
22450
+ SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "non"], ["key", "non"], ["created_at", "2016-01-29 21:51:28.579462"], ["updated_at", "2016-01-29 21:51:28.579462"]]
22451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22452
+  (0.0ms) SAVEPOINT active_record_1
22453
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iusto"], ["key", "iusto"], ["created_at", "2016-01-29 21:51:28.582651"], ["updated_at", "2016-01-29 21:51:28.582651"]]
22454
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22455
+  (0.0ms) SAVEPOINT active_record_1
22456
+ 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 21:51:28.584036"], ["updated_at", "2016-01-29 21:51:28.584036"]]
22457
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22458
+  (0.0ms) SAVEPOINT active_record_1
22459
+ 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 Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:51:28.587036"], ["updated_at", "2016-01-29 21:51:28.587036"]]
22460
+ 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]]
22461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22462
+  (0.0ms) SAVEPOINT active_record_1
22463
+ SQL (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 Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:51:28.590266"], ["updated_at", "2016-01-29 21:51:28.590266"]]
22464
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22465
+  (0.0ms) SAVEPOINT active_record_1
22466
+ SQL (0.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 Iron Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:51:28.592351"], ["updated_at", "2016-01-29 21:51:28.592351"]]
22467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22468
+  (0.0ms) SAVEPOINT active_record_1
22469
+ SQL (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-29 21:51:28.594094"], ["updated_at", "2016-01-29 21:51:28.594094"]]
22470
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22471
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22472
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22473
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22474
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22475
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.6ms)
22476
+  (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"]]
22477
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22478
+ Portfolio::SiteItemImage Exists (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]]
22479
+ Portfolio::Site Load (0.2ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22480
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.3ms)
22481
+ 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]]
22482
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (19.6ms)
22483
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22484
+  (1.3ms) rollback transaction
22485
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22486
+  (0.1ms) begin transaction
22487
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
22488
+ Parameters: {"site_id"=>"0"}
22489
+ Completed 401 Unauthorized in 8ms (ActiveRecord: 0.0ms)
22490
+ Rendered text template (0.0ms)
22491
+  (0.1ms) rollback transaction
22492
+  (0.1ms) begin transaction
22493
+  (0.1ms) SAVEPOINT active_record_1
22494
+ Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'junius_thompson@moenkoelpin.io' LIMIT 1
22495
+ SQL (1.0ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "junius_thompson@moenkoelpin.io"], ["encrypted_password", "$2a$04$E/nFDoBqKy7UhG8VdttWjeHb0qHG6hW4FomtwAFFVOUvtVJjxEqZe"], ["created_at", "2016-01-29 21:52:29.646899"], ["updated_at", "2016-01-29 21:52:29.646899"]]
22496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22497
+  (0.1ms) SAVEPOINT active_record_1
22498
+ SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Rebeca Runte Sr."], ["job_title", "Customer Solutions Assistant"], ["greetings", "Aut omnis eos voluptatibus quaerat quos."], ["summary", "Rerum vel et beatae. At sapiente in vel veniam. Perferendis nisi cupiditate voluptatem molestias aspernatur alias."], ["key", "rebeca_runte_sr"], ["created_at", "2016-01-29 21:52:29.734358"], ["updated_at", "2016-01-29 21:52:29.734358"]]
22499
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22500
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
22501
+ Parameters: {"site_id"=>"1"}
22502
+ 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]]
22503
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22504
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms)
22505
+ Completed 200 OK in 12ms (Views: 5.4ms | ActiveRecord: 0.3ms)
22506
+  (1.5ms) rollback transaction
22507
+  (0.1ms) begin transaction
22508
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
22509
+ Parameters: {"site_id"=>"0"}
22510
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
22511
+ Rendered text template (0.0ms)
22512
+  (0.1ms) rollback transaction
22513
+  (0.0ms) begin transaction
22514
+  (0.0ms) SAVEPOINT active_record_1
22515
+ Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'junius_thompson@moenkoelpin.io' LIMIT 1
22516
+ SQL (0.2ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "junius_thompson@moenkoelpin.io"], ["encrypted_password", "$2a$04$EvUS/F5Cc.aszZTTMkmuv.QohX1CSH3bc6LyU0Na8PM/pf3HSxpkO"], ["created_at", "2016-01-29 21:52:29.758756"], ["updated_at", "2016-01-29 21:52:29.758756"]]
22517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22518
+  (0.0ms) SAVEPOINT active_record_1
22519
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ramona Cartwright"], ["job_title", "Human Mobility Technician"], ["greetings", "Ea id ut rerum sed repudiandae et."], ["summary", "Eveniet nam exercitationem quibusdam quas. Qui sequi quis accusantium eum enim. Vel sit eligendi nobis illo quo odio et."], ["key", "ramona_cartwright"], ["created_at", "2016-01-29 21:52:29.761492"], ["updated_at", "2016-01-29 21:52:29.761492"]]
22520
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22521
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
22522
+ Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"}
22523
+ 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]]
22524
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22525
+  (0.1ms) SAVEPOINT active_record_1
22526
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22527
+ SQL (0.1ms) 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 21:52:29.780212"], ["updated_at", "2016-01-29 21:52:29.780212"]]
22528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22529
+ Redirected to http://test.host/admin/sites/1/site_projects/1/edit
22530
+ Completed 302 Found in 19ms (ActiveRecord: 0.5ms)
22531
+  (0.6ms) rollback transaction
22532
+  (0.1ms) begin transaction
22533
+ Processing by Portfolio::Admin::SitesController#index as HTML
22534
+ Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
22535
+ Rendered text template (0.0ms)
22536
+  (0.1ms) rollback transaction
22537
+  (0.2ms) begin transaction
22538
+  (0.1ms) SAVEPOINT active_record_1
22539
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Pamela O'Keefe"], ["job_title", "Forward Integration Engineer"], ["greetings", "Dignissimos inventore adipisci maxime nemo aut voluptates sint veniam."], ["summary", "Expedita animi alias dolor consectetur ratione. Sed ut fugit autem sunt deleniti. In sed molestiae voluptas quidem. Occaecati praesentium neque qui fuga minus eum."], ["key", "pamela_o_keefe"], ["created_at", "2016-01-29 21:52:29.793040"], ["updated_at", "2016-01-29 21:52:29.793040"]]
22540
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22541
+  (0.1ms) SAVEPOINT active_record_1
22542
+ 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 21:52:29.799808"], ["updated_at", "2016-01-29 21:52:29.799808"]]
22543
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22544
+  (0.5ms) rollback transaction
22545
+  (0.1ms) begin transaction
22546
+  (0.0ms) SAVEPOINT active_record_1
22547
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Marlon Jenkins"], ["job_title", "Forward Tactics Designer"], ["greetings", "Corporis sit voluptas repudiandae."], ["summary", "Itaque quam voluptas. In hic dicta. Officiis qui earum aut placeat eos voluptatem animi."], ["key", "ms_marlon_jenkins"], ["created_at", "2016-01-29 21:52:29.804353"], ["updated_at", "2016-01-29 21:52:29.804353"]]
22548
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22549
+  (0.0ms) SAVEPOINT active_record_1
22550
+ 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 21:52:29.807028"], ["updated_at", "2016-01-29 21:52:29.807028"]]
22551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22552
+  (0.0ms) SAVEPOINT active_record_1
22553
+ SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ceasar Feeney"], ["job_title", "Product Interactions Executive"], ["greetings", "Fugit vero itaque dolor aliquid ut."], ["summary", "Optio veritatis a. Commodi rem et facilis ut. Atque dolorem reprehenderit harum placeat. Repudiandae sequi voluptatem. Iure cum est."], ["key", "ceasar_feeney"], ["created_at", "2016-01-29 21:52:29.810029"], ["updated_at", "2016-01-29 21:52:29.810029"]]
22554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22555
+  (0.0ms) SAVEPOINT active_record_1
22556
+ 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 21:52:29.811623"], ["updated_at", "2016-01-29 21:52:29.811623"]]
22557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22558
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild')
22559
+ 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
22560
+  (0.5ms) rollback transaction
22561
+  (0.1ms) begin transaction
22562
+  (0.0ms) SAVEPOINT active_record_1
22563
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Waino Kessler DVM"], ["job_title", "Direct Intranet Facilitator"], ["greetings", "Illum id nemo distinctio est non."], ["summary", "Adipisci quibusdam ea non natus at minus. Aut tenetur nam omnis labore. Quis enim eius nemo mollitia consequatur ipsam praesentium."], ["key", "waino_kessler_dvm"], ["created_at", "2016-01-29 21:52:29.817444"], ["updated_at", "2016-01-29 21:52:29.817444"]]
22564
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22565
+  (0.0ms) SAVEPOINT active_record_1
22566
+ 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 21:52:29.819719"], ["updated_at", "2016-01-29 21:52:29.819719"]]
22567
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22568
+  (0.4ms) rollback transaction
22569
+  (0.0ms) begin transaction
22570
+  (0.1ms) SAVEPOINT active_record_1
22571
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jerel Feeney"], ["job_title", "Direct Web Associate"], ["greetings", "Incidunt delectus autem suscipit ut."], ["summary", "Et cum ullam voluptatem quam. Autem eum voluptatem. Nesciunt iure et rem eos illum."], ["key", "jerel_feeney"], ["created_at", "2016-01-29 21:52:29.823708"], ["updated_at", "2016-01-29 21:52:29.823708"]]
22572
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22573
+  (0.1ms) SAVEPOINT active_record_1
22574
+ 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 21:52:29.826445"], ["updated_at", "2016-01-29 21:52:29.826445"]]
22575
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22576
+  (0.5ms) rollback transaction
22577
+  (0.1ms) begin transaction
22578
+  (0.0ms) SAVEPOINT active_record_1
22579
+ SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nikita Runolfsdottir"], ["job_title", "Dynamic Brand Developer"], ["greetings", "Quibusdam ut atque quo rem."], ["summary", "Enim nulla debitis ab. Est quasi qui iure. Rerum dolorem rem autem quas. Iusto animi et eos sequi."], ["key", "nikita_runolfsdottir"], ["created_at", "2016-01-29 21:52:29.830927"], ["updated_at", "2016-01-29 21:52:29.830927"]]
22580
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22581
+  (0.0ms) SAVEPOINT active_record_1
22582
+ 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 21:52:29.832853"], ["updated_at", "2016-01-29 21:52:29.832853"]]
22583
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22584
+  (0.4ms) rollback transaction
22585
+  (0.1ms) begin transaction
22586
+  (0.0ms) SAVEPOINT active_record_1
22587
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Easter Kutch"], ["job_title", "Product Solutions Representative"], ["greetings", "Est totam deleniti cupiditate earum nostrum assumenda expedita."], ["summary", "Modi ut fugit. Aut laudantium quasi enim. Laboriosam incidunt recusandae sit vitae."], ["key", "easter_kutch"], ["created_at", "2016-01-29 21:52:29.836907"], ["updated_at", "2016-01-29 21:52:29.836907"]]
22588
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22589
+  (0.1ms) SAVEPOINT active_record_1
22590
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "asperiores"], ["key", "asperiores"], ["created_at", "2016-01-29 21:52:29.843728"], ["updated_at", "2016-01-29 21:52:29.843728"]]
22591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22592
+  (0.0ms) SAVEPOINT active_record_1
22593
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "hic"], ["key", "hic"], ["created_at", "2016-01-29 21:52:29.845560"], ["updated_at", "2016-01-29 21:52:29.845560"]]
22594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22595
+  (0.0ms) SAVEPOINT active_record_1
22596
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ducimus"], ["key", "ducimus"], ["created_at", "2016-01-29 21:52:29.849361"], ["updated_at", "2016-01-29 21:52:29.849361"]]
22597
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22598
+  (0.1ms) SAVEPOINT active_record_1
22599
+ 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 Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:52:29.863205"], ["updated_at", "2016-01-29 21:52:29.863205"]]
22600
+ 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]]
22601
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22602
+  (0.0ms) SAVEPOINT active_record_1
22603
+ SQL (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 Shirt"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:52:29.867505"], ["updated_at", "2016-01-29 21:52:29.867505"]]
22604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22605
+  (0.1ms) SAVEPOINT active_record_1
22606
+ SQL (0.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 Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:52:29.869777"], ["updated_at", "2016-01-29 21:52:29.869777"]]
22607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22608
+  (0.2ms) SAVEPOINT active_record_1
22609
+ SQL (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 Chair"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:52:29.873149"], ["updated_at", "2016-01-29 21:52:29.873149"]]
22610
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22611
+  (1.5ms) rollback transaction
22612
+  (0.1ms) begin transaction
22613
+  (0.1ms) SAVEPOINT active_record_1
22614
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lauretta Robel PhD"], ["job_title", "Dynamic Factors Administrator"], ["greetings", "Fugit magnam sint error harum explicabo rem."], ["summary", "Sit voluptas est rerum ad. Repellat rem excepturi aut nam est dolores sint. Fugit expedita dolorem cum hic aut architecto."], ["key", "lauretta_robel_phd"], ["created_at", "2016-01-29 21:52:29.893743"], ["updated_at", "2016-01-29 21:52:29.893743"]]
22615
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22616
+  (0.0ms) SAVEPOINT active_record_1
22617
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "enim"], ["key", "enim"], ["created_at", "2016-01-29 21:52:29.895820"], ["updated_at", "2016-01-29 21:52:29.895820"]]
22618
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22619
+  (0.0ms) SAVEPOINT active_record_1
22620
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quis"], ["key", "quis"], ["created_at", "2016-01-29 21:52:29.897413"], ["updated_at", "2016-01-29 21:52:29.897413"]]
22621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22622
+  (0.0ms) SAVEPOINT active_record_1
22623
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "in"], ["key", "in"], ["created_at", "2016-01-29 21:52:29.898725"], ["updated_at", "2016-01-29 21:52:29.898725"]]
22624
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22625
+  (0.1ms) SAVEPOINT active_record_1
22626
+ 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 Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:52:29.901877"], ["updated_at", "2016-01-29 21:52:29.901877"]]
22627
+ 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]]
22628
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22629
+  (0.0ms) SAVEPOINT active_record_1
22630
+ 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", "Aerodynamic Wooden Bag"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:52:29.904953"], ["updated_at", "2016-01-29 21:52:29.904953"]]
22631
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22632
+  (0.1ms) SAVEPOINT active_record_1
22633
+ SQL (0.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 Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:52:29.907654"], ["updated_at", "2016-01-29 21:52:29.907654"]]
22634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22635
+  (0.0ms) SAVEPOINT active_record_1
22636
+ SQL (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 Gloves"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:52:29.909826"], ["updated_at", "2016-01-29 21:52:29.909826"]]
22637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22638
+ Portfolio::SiteProject Load (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]]
22639
+  (0.5ms) rollback transaction
22640
+  (0.1ms) begin transaction
22641
+  (0.0ms) SAVEPOINT active_record_1
22642
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Earline Ferry"], ["job_title", "Investor Creative Strategist"], ["greetings", "Fugiat aut dolorem accusantium nihil aut."], ["summary", "Aut dicta occaecati quas ullam. Aut similique ut est consequatur non cum. Sequi ad aut tenetur quidem natus dolorem."], ["key", "ms_earline_ferry"], ["created_at", "2016-01-29 21:52:29.919766"], ["updated_at", "2016-01-29 21:52:29.919766"]]
22643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22644
+  (0.1ms) SAVEPOINT active_record_1
22645
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "vel"], ["key", "vel"], ["created_at", "2016-01-29 21:52:29.922348"], ["updated_at", "2016-01-29 21:52:29.922348"]]
22646
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22647
+  (0.0ms) SAVEPOINT active_record_1
22648
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptas"], ["key", "voluptas"], ["created_at", "2016-01-29 21:52:29.924500"], ["updated_at", "2016-01-29 21:52:29.924500"]]
22649
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22650
+  (0.1ms) SAVEPOINT active_record_1
22651
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "provident"], ["key", "provident"], ["created_at", "2016-01-29 21:52:29.938317"], ["updated_at", "2016-01-29 21:52:29.938317"]]
22652
+  (0.3ms) RELEASE SAVEPOINT active_record_1
22653
+  (0.1ms) SAVEPOINT active_record_1
22654
+ 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 Bronze Clock"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:52:29.945510"], ["updated_at", "2016-01-29 21:52:29.945510"]]
22655
+ 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]]
22656
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22657
+  (0.0ms) SAVEPOINT active_record_1
22658
+ SQL (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 Coat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:52:29.949707"], ["updated_at", "2016-01-29 21:52:29.949707"]]
22659
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22660
+  (0.1ms) SAVEPOINT active_record_1
22661
+ SQL (0.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 Rubber Chair"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:52:29.953241"], ["updated_at", "2016-01-29 21:52:29.953241"]]
22662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22663
+  (0.2ms) SAVEPOINT active_record_1
22664
+ SQL (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 Hat"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:52:29.956435"], ["updated_at", "2016-01-29 21:52:29.956435"]]
22665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22666
+  (1.3ms) rollback transaction
22667
+  (0.1ms) begin transaction
22668
+  (0.0ms) SAVEPOINT active_record_1
22669
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Glen Yost"], ["job_title", "Product Usability Liaison"], ["greetings", "Nam aut id suscipit."], ["summary", "Laborum hic adipisci qui dicta veniam. Laborum natus qui. Ipsa itaque quasi assumenda. Iste quaerat quam et pariatur est. Quia et sint."], ["key", "ms_glen_yost"], ["created_at", "2016-01-29 21:52:29.962079"], ["updated_at", "2016-01-29 21:52:29.962079"]]
22670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22671
+  (0.0ms) SAVEPOINT active_record_1
22672
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-29 21:52:29.964157"], ["updated_at", "2016-01-29 21:52:29.964157"]]
22673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22674
+  (0.0ms) SAVEPOINT active_record_1
22675
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "iusto"], ["key", "iusto"], ["created_at", "2016-01-29 21:52:29.965725"], ["updated_at", "2016-01-29 21:52:29.965725"]]
22676
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22677
+  (0.0ms) SAVEPOINT active_record_1
22678
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "est"], ["key", "est"], ["created_at", "2016-01-29 21:52:29.967194"], ["updated_at", "2016-01-29 21:52:29.967194"]]
22679
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22680
+  (0.1ms) SAVEPOINT active_record_1
22681
+ 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 Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:52:29.970628"], ["updated_at", "2016-01-29 21:52:29.970628"]]
22682
+ 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]]
22683
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22684
+  (0.0ms) SAVEPOINT active_record_1
22685
+ SQL (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 Computer"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:52:29.973671"], ["updated_at", "2016-01-29 21:52:29.973671"]]
22686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22687
+  (0.0ms) SAVEPOINT active_record_1
22688
+ SQL (0.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 Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:52:29.975663"], ["updated_at", "2016-01-29 21:52:29.975663"]]
22689
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22690
+  (0.0ms) SAVEPOINT active_record_1
22691
+ SQL (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 Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:52:29.977455"], ["updated_at", "2016-01-29 21:52:29.977455"]]
22692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22693
+ 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
22694
+  (0.7ms) rollback transaction
22695
+  (0.1ms) begin transaction
22696
+  (0.0ms) SAVEPOINT active_record_1
22697
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Bernice Shields Jr."], ["job_title", "Regional Program Assistant"], ["greetings", "Natus blanditiis vero debitis omnis quibusdam voluptas qui consectetur."], ["summary", "Cum iure sint est velit sit. Sunt ut veritatis quia dolorem consequuntur eaque. Optio corrupti laboriosam nihil molestiae."], ["key", "bernice_shields_jr"], ["created_at", "2016-01-29 21:52:29.984100"], ["updated_at", "2016-01-29 21:52:29.984100"]]
22698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22699
+  (0.0ms) SAVEPOINT active_record_1
22700
+ SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Plastic Bench"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 21:52:29.986500"], ["updated_at", "2016-01-29 21:52:29.986500"]]
22701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22702
+  (0.0ms) SAVEPOINT active_record_1
22703
+ 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-29 21:52:29.988637"], ["updated_at", "2016-01-29 21:52:29.988637"]]
22704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22705
+  (0.0ms) SAVEPOINT active_record_1
22706
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Awesome Marble Gloves"], ["site_id", 1], ["created_at", "2016-01-29 21:52:29.990601"], ["updated_at", "2016-01-29 21:52:29.990601"]]
22707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22708
+  (0.1ms) SAVEPOINT active_record_1
22709
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Silk Gloves"], ["site_id", 1], ["created_at", "2016-01-29 21:52:29.992587"], ["updated_at", "2016-01-29 21:52:29.992587"]]
22710
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22711
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22712
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22713
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22714
+ Portfolio::SiteMenuLink Load (0.2ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22715
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (7.7ms)
22716
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (19.7ms)
22717
+ 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"]]
22718
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
22719
+  (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"]]
22720
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22721
+ 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]]
22722
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22723
+ 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]]
22724
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22725
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (204.1ms)
22726
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (275.5ms)
22727
+ 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"]]
22728
+  (1.5ms) rollback transaction
22729
+  (0.1ms) begin transaction
22730
+  (0.1ms) SAVEPOINT active_record_1
22731
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Breanna Rowe"], ["job_title", "Lead Usability Assistant"], ["greetings", "Inventore deserunt unde qui ipsum."], ["summary", "Voluptatibus corrupti tempore dolorum laborum aperiam. Autem exercitationem deserunt et nam occaecati et sunt. Voluptatem vero aut harum omnis velit."], ["key", "breanna_rowe"], ["created_at", "2016-01-29 21:52:30.289984"], ["updated_at", "2016-01-29 21:52:30.289984"]]
22732
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22733
+  (0.1ms) SAVEPOINT active_record_1
22734
+ SQL (0.6ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Rustic Wool Lamp"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 21:52:30.295117"], ["updated_at", "2016-01-29 21:52:30.295117"]]
22735
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22736
+  (0.1ms) SAVEPOINT active_record_1
22737
+ SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Intelligent Wool Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 21:52:30.299938"], ["updated_at", "2016-01-29 21:52:30.299938"]]
22738
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22739
+  (0.1ms) SAVEPOINT active_record_1
22740
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Synergistic Iron Computer"], ["site_id", 1], ["created_at", "2016-01-29 21:52:30.303887"], ["updated_at", "2016-01-29 21:52:30.303887"]]
22741
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22742
+  (0.1ms) SAVEPOINT active_record_1
22743
+ 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-29 21:52:30.307997"], ["updated_at", "2016-01-29 21:52:30.307997"]]
22744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22745
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22746
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22747
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22748
+ Portfolio::SiteMenuLink Load (0.1ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22749
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (6.6ms)
22750
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (7.4ms)
22751
+ 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"]]
22752
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
22753
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]]
22754
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22755
+ 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]]
22756
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22757
+ 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]]
22758
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22759
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.5ms)
22760
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (25.1ms)
22761
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22762
+  (1.6ms) rollback transaction
22763
+  (0.1ms) begin transaction
22764
+  (0.1ms) SAVEPOINT active_record_1
22765
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Teagan Renner"], ["job_title", "Dynamic Operations Planner"], ["greetings", "Porro quo quia voluptas et est nostrum inventore aliquid."], ["summary", "Quia harum ea inventore quidem omnis nisi odio. Quidem doloribus ut error voluptatum mollitia molestias assumenda. Tempora voluptatem explicabo doloribus neque."], ["key", "teagan_renner"], ["created_at", "2016-01-29 21:52:30.345517"], ["updated_at", "2016-01-29 21:52:30.345517"]]
22766
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22767
+  (0.0ms) SAVEPOINT active_record_1
22768
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "quia"], ["key", "quia"], ["created_at", "2016-01-29 21:52:30.348290"], ["updated_at", "2016-01-29 21:52:30.348290"]]
22769
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22770
+  (0.0ms) SAVEPOINT active_record_1
22771
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "veniam"], ["key", "veniam"], ["created_at", "2016-01-29 21:52:30.350821"], ["updated_at", "2016-01-29 21:52:30.350821"]]
22772
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22773
+  (0.0ms) SAVEPOINT active_record_1
22774
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "fugit"], ["key", "fugit"], ["created_at", "2016-01-29 21:52:30.352792"], ["updated_at", "2016-01-29 21:52:30.352792"]]
22775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22776
+  (0.0ms) SAVEPOINT active_record_1
22777
+ 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 Copper Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:52:30.356092"], ["updated_at", "2016-01-29 21:52:30.356092"]]
22778
+ 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]]
22779
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22780
+  (0.0ms) SAVEPOINT active_record_1
22781
+ SQL (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 Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:52:30.359655"], ["updated_at", "2016-01-29 21:52:30.359655"]]
22782
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22783
+  (0.0ms) SAVEPOINT active_record_1
22784
+ SQL (0.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 Aluminum Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:52:30.362181"], ["updated_at", "2016-01-29 21:52:30.362181"]]
22785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22786
+  (0.0ms) SAVEPOINT active_record_1
22787
+ SQL (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 Watch"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:52:30.364351"], ["updated_at", "2016-01-29 21:52:30.364351"]]
22788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22789
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22790
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22791
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22792
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22793
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.1ms)
22794
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.5ms)
22795
+ 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"]]
22796
+  (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"]]
22797
+ Portfolio::SiteProject 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"]]
22798
+ Portfolio::SiteItemImage Exists (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]]
22799
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22800
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.2ms)
22801
+  (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"]]
22802
+ 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"]]
22803
+ Portfolio::SiteItemImage Exists (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]]
22804
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22805
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.7ms)
22806
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
22807
+  (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"]]
22808
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.5ms)
22809
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (16.3ms)
22810
+ 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
22811
+ 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"]]
22812
+  (1.7ms) rollback transaction
22813
+  (0.1ms) begin transaction
22814
+  (0.0ms) SAVEPOINT active_record_1
22815
+ SQL (0.7ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Zelda Koss"], ["job_title", "Future Markets Executive"], ["greetings", "Beatae enim omnis dolor."], ["summary", "In provident et. Eum ratione provident ut quae repudiandae nihil. Vitae ut dignissimos. Est aut quis et perferendis eum quo. Corporis quibusdam est quis similique asperiores dolorum."], ["key", "zelda_koss"], ["created_at", "2016-01-29 21:52:30.387893"], ["updated_at", "2016-01-29 21:52:30.387893"]]
22816
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22817
+  (0.0ms) SAVEPOINT active_record_1
22818
+ SQL (0.4ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sit"], ["key", "sit"], ["created_at", "2016-01-29 21:52:30.391658"], ["updated_at", "2016-01-29 21:52:30.391658"]]
22819
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22820
+  (0.0ms) SAVEPOINT active_record_1
22821
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nemo"], ["key", "nemo"], ["created_at", "2016-01-29 21:52:30.393592"], ["updated_at", "2016-01-29 21:52:30.393592"]]
22822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22823
+  (0.0ms) SAVEPOINT active_record_1
22824
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "hic"], ["key", "hic"], ["created_at", "2016-01-29 21:52:30.395221"], ["updated_at", "2016-01-29 21:52:30.395221"]]
22825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22826
+  (0.0ms) SAVEPOINT active_record_1
22827
+ 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 Lamp"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:52:30.398379"], ["updated_at", "2016-01-29 21:52:30.398379"]]
22828
+ 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]]
22829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22830
+  (0.0ms) SAVEPOINT active_record_1
22831
+ SQL (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 Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:52:30.401247"], ["updated_at", "2016-01-29 21:52:30.401247"]]
22832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22833
+  (0.0ms) SAVEPOINT active_record_1
22834
+ SQL (0.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 Granite Watch"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:52:30.403168"], ["updated_at", "2016-01-29 21:52:30.403168"]]
22835
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22836
+  (0.1ms) SAVEPOINT active_record_1
22837
+ SQL (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 Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:52:30.406493"], ["updated_at", "2016-01-29 21:52:30.406493"]]
22838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22839
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22840
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22841
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22842
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22843
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.8ms)
22844
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.3ms)
22845
+ 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"]]
22846
+  (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"]]
22847
+ 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"]]
22848
+ Portfolio::SiteItemImage Exists (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]]
22849
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22850
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.9ms)
22851
+  (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"]]
22852
+ 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"]]
22853
+ Portfolio::SiteItemImage Exists (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]]
22854
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22855
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.0ms)
22856
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
22857
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]]
22858
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.7ms)
22859
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (14.8ms)
22860
+ 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
22861
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22862
+  (1.4ms) rollback transaction
22863
+  (0.1ms) begin transaction
22864
+  (0.0ms) SAVEPOINT active_record_1
22865
+ SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Percival Blanda IV"], ["job_title", "Chief Tactics Developer"], ["greetings", "Adipisci harum cupiditate repellat libero dolor maxime."], ["summary", "Asperiores molestiae necessitatibus quod omnis. Possimus aut eum et et. Quam inventore cumque nam atque quidem et."], ["key", "percival_blanda_iv"], ["created_at", "2016-01-29 21:52:30.431159"], ["updated_at", "2016-01-29 21:52:30.431159"]]
22866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22867
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22868
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22869
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.9ms)
22870
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" 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"]]
22871
+ 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]]
22872
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (7.1ms)
22873
+  (0.3ms) rollback transaction
22874
+  (0.1ms) begin transaction
22875
+  (0.0ms) SAVEPOINT active_record_1
22876
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Clarabelle Wintheiser"], ["job_title", "Legacy Accounts Technician"], ["greetings", "Distinctio aut aperiam voluptate dolores sapiente aut."], ["summary", "Consequatur id excepturi rerum quas architecto corporis. Ab quia aspernatur. Qui facere debitis enim qui sunt."], ["key", "clarabelle_wintheiser"], ["created_at", "2016-01-29 21:52:30.454359"], ["updated_at", "2016-01-29 21:52:30.454359"]]
22877
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22878
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22879
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22880
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.6ms)
22881
+  (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"]]
22882
+ 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]]
22883
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (3.0ms)
22884
+  (0.3ms) rollback transaction
22885
+  (0.1ms) begin transaction
22886
+  (0.1ms) SAVEPOINT active_record_1
22887
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Edward Schneider PhD"], ["job_title", "Central Functionality Assistant"], ["greetings", "Consequatur et asperiores animi debitis cum reiciendis eos."], ["summary", "Esse similique aut consectetur dolores error. Iste quis laborum hic neque deserunt. Et nemo est velit repellendus rerum."], ["key", "edward_schneider_phd"], ["created_at", "2016-01-29 21:52:30.464976"], ["updated_at", "2016-01-29 21:52:30.464976"]]
22888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22889
+  (0.0ms) SAVEPOINT active_record_1
22890
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolore"], ["key", "dolore"], ["created_at", "2016-01-29 21:52:30.466903"], ["updated_at", "2016-01-29 21:52:30.466903"]]
22891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22892
+  (0.1ms) SAVEPOINT active_record_1
22893
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ipsum"], ["key", "ipsum"], ["created_at", "2016-01-29 21:52:30.468497"], ["updated_at", "2016-01-29 21:52:30.468497"]]
22894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22895
+  (0.0ms) SAVEPOINT active_record_1
22896
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "id"], ["key", "id"], ["created_at", "2016-01-29 21:52:30.470089"], ["updated_at", "2016-01-29 21:52:30.470089"]]
22897
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22898
+  (0.2ms) SAVEPOINT active_record_1
22899
+ 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 Copper Plate"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:52:30.475229"], ["updated_at", "2016-01-29 21:52:30.475229"]]
22900
+ 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]]
22901
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22902
+  (0.0ms) SAVEPOINT active_record_1
22903
+ SQL (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 Table"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:52:30.479182"], ["updated_at", "2016-01-29 21:52:30.479182"]]
22904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22905
+  (0.0ms) SAVEPOINT active_record_1
22906
+ SQL (0.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 Wool Computer"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:52:30.481720"], ["updated_at", "2016-01-29 21:52:30.481720"]]
22907
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22908
+  (0.1ms) SAVEPOINT active_record_1
22909
+ SQL (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 Computer"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:52:30.485249"], ["updated_at", "2016-01-29 21:52:30.485249"]]
22910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22911
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22912
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22913
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
22914
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
22915
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.2ms)
22916
+  (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"]]
22917
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22918
+ 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]]
22919
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22920
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (5.1ms)
22921
+ 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]]
22922
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (20.7ms)
22923
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
22924
+  (1.6ms) rollback transaction
22925
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22926
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22927
+  (0.1ms) begin transaction
22928
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
22929
+ Parameters: {"site_id"=>"0"}
22930
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
22931
+ Rendered text template (0.0ms)
22932
+  (0.1ms) rollback transaction
22933
+  (0.0ms) begin transaction
22934
+  (0.1ms) SAVEPOINT active_record_1
22935
+ Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'lue_smith@terry.info' LIMIT 1
22936
+ SQL (0.4ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "lue_smith@terry.info"], ["encrypted_password", "$2a$04$ni1qC7Eh1SxN0/1Q57Og6e7nJXlY5eUfXbsZNfnCVMYoAGqCGhR7W"], ["created_at", "2016-01-29 21:57:37.211015"], ["updated_at", "2016-01-29 21:57:37.211015"]]
22937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22938
+  (0.2ms) SAVEPOINT active_record_1
22939
+ SQL (0.5ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Ms. Walter Bode"], ["job_title", "International Tactics Designer"], ["greetings", "Quae a iusto fugiat enim amet."], ["summary", "Doloremque qui vero accusantium nobis. Nemo et et placeat sequi. Quisquam beatae at illum."], ["key", "ms_walter_bode"], ["created_at", "2016-01-29 21:57:37.299505"], ["updated_at", "2016-01-29 21:57:37.299505"]]
22940
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22941
+ Processing by Portfolio::Admin::SiteProjectsController#index as HTML
22942
+ Parameters: {"site_id"=>"1"}
22943
+ 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]]
22944
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22945
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/admin/site_items/index.html.erb within layouts/portfolio/admin (0.2ms)
22946
+ Completed 200 OK in 11ms (Views: 5.5ms | ActiveRecord: 0.3ms)
22947
+  (1.4ms) rollback transaction
22948
+  (0.1ms) begin transaction
22949
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
22950
+ Parameters: {"site_id"=>"0"}
22951
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
22952
+ Rendered text template (0.0ms)
22953
+  (0.1ms) rollback transaction
22954
+  (0.0ms) begin transaction
22955
+  (0.1ms) SAVEPOINT active_record_1
22956
+ Portfolio::AdminUser Exists (0.1ms) SELECT 1 AS one FROM "portfolio_admin_users" WHERE "portfolio_admin_users"."email" = 'lue_smith@terry.info' LIMIT 1
22957
+ SQL (0.2ms) INSERT INTO "portfolio_admin_users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "lue_smith@terry.info"], ["encrypted_password", "$2a$04$VSeKRNmqzhvz8ri5hLwD9.t9mWXtVQ1gOFnzo6mBysp2ry3K68wEi"], ["created_at", "2016-01-29 21:57:37.323453"], ["updated_at", "2016-01-29 21:57:37.323453"]]
22958
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22959
+  (0.0ms) SAVEPOINT active_record_1
22960
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jaida Johnston DDS"], ["job_title", "Dynamic Paradigm Developer"], ["greetings", "Sit harum illo dolores qui maiores."], ["summary", "Tempora ipsa molestiae voluptatem in eius. Ea harum nihil aliquam dolorem eveniet ut. Tempore ullam culpa eos sapiente ab et."], ["key", "jaida_johnston_dds"], ["created_at", "2016-01-29 21:57:37.326303"], ["updated_at", "2016-01-29 21:57:37.326303"]]
22961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22962
+ Processing by Portfolio::Admin::SiteProjectsController#create as HTML
22963
+ Parameters: {"site_project"=>{"title"=>"proj1"}, "site_id"=>"1"}
22964
+ 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]]
22965
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22966
+  (0.1ms) SAVEPOINT active_record_1
22967
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
22968
+ SQL (0.1ms) 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 21:57:37.345437"], ["updated_at", "2016-01-29 21:57:37.345437"]]
22969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22970
+ Redirected to http://test.host/admin/sites/1/site_projects/1/edit
22971
+ Completed 302 Found in 19ms (ActiveRecord: 0.5ms)
22972
+  (0.6ms) rollback transaction
22973
+  (0.1ms) begin transaction
22974
+ Processing by Portfolio::Admin::SitesController#index as HTML
22975
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
22976
+ Rendered text template (0.0ms)
22977
+  (0.1ms) rollback transaction
22978
+  (0.1ms) begin transaction
22979
+  (0.1ms) SAVEPOINT active_record_1
22980
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Misty Greenfelder"], ["job_title", "Senior Configuration Administrator"], ["greetings", "Nesciunt exercitationem ullam autem ut et."], ["summary", "Tenetur ea quia perferendis cum autem necessitatibus. Ab et ex id dolores laudantium nobis eveniet. Perspiciatis corporis voluptatem nihil atque sunt. Aut non dignissimos ab voluptatibus sunt."], ["key", "misty_greenfelder"], ["created_at", "2016-01-29 21:57:37.356578"], ["updated_at", "2016-01-29 21:57:37.356578"]]
22981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22982
+  (0.1ms) SAVEPOINT active_record_1
22983
+ 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 21:57:37.363320"], ["updated_at", "2016-01-29 21:57:37.363320"]]
22984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22985
+  (0.5ms) rollback transaction
22986
+  (0.1ms) begin transaction
22987
+  (0.0ms) SAVEPOINT active_record_1
22988
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mariane Greenholt"], ["job_title", "Legacy Mobility Producer"], ["greetings", "A ad repudiandae nam."], ["summary", "Saepe praesentium repellendus maxime ab maiores ut qui. Quam sunt magnam eos minima nam. Labore occaecati eos corporis quidem distinctio. Vel voluptatum eum magni architecto vel recusandae."], ["key", "mariane_greenholt"], ["created_at", "2016-01-29 21:57:37.367823"], ["updated_at", "2016-01-29 21:57:37.367823"]]
22989
+  (0.2ms) RELEASE SAVEPOINT active_record_1
22990
+  (0.1ms) SAVEPOINT active_record_1
22991
+ 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 21:57:37.371361"], ["updated_at", "2016-01-29 21:57:37.371361"]]
22992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22993
+  (0.0ms) SAVEPOINT active_record_1
22994
+ SQL (0.1ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Casper Kutch"], ["job_title", "Internal Marketing Administrator"], ["greetings", "Voluptatum nihil qui exercitationem."], ["summary", "Dolorem id ipsum. Voluptas dolor impedit qui iure quibusdam. Eum earum ut amet enim quisquam. Possimus distinctio quis sit facere."], ["key", "casper_kutch"], ["created_at", "2016-01-29 21:57:37.374416"], ["updated_at", "2016-01-29 21:57:37.374416"]]
22995
+  (0.1ms) RELEASE SAVEPOINT active_record_1
22996
+  (0.0ms) SAVEPOINT active_record_1
22997
+ 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 21:57:37.376481"], ["updated_at", "2016-01-29 21:57:37.376481"]]
22998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
22999
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteItemChild')
23000
+ 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
23001
+  (0.5ms) rollback transaction
23002
+  (0.1ms) begin transaction
23003
+  (0.0ms) SAVEPOINT active_record_1
23004
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lawrence Runolfsdottir"], ["job_title", "Direct Brand Specialist"], ["greetings", "Occaecati est hic non totam ex et quo consequatur."], ["summary", "Quis aliquam enim est. Aut ipsum et doloremque deleniti exercitationem. Eligendi omnis ad est quaerat suscipit animi sed. Reprehenderit illo numquam voluptatem molestias eos soluta. Et id magnam."], ["key", "lawrence_runolfsdottir"], ["created_at", "2016-01-29 21:57:37.382317"], ["updated_at", "2016-01-29 21:57:37.382317"]]
23005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23006
+  (0.0ms) SAVEPOINT active_record_1
23007
+ 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 21:57:37.384404"], ["updated_at", "2016-01-29 21:57:37.384404"]]
23008
+  (0.2ms) RELEASE SAVEPOINT active_record_1
23009
+  (0.5ms) rollback transaction
23010
+  (0.1ms) begin transaction
23011
+  (0.1ms) SAVEPOINT active_record_1
23012
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Abby Torphy DDS"], ["job_title", "Direct Functionality Orchestrator"], ["greetings", "Modi molestias aut nisi consequatur ea."], ["summary", "Sapiente quia dolores sequi eum sint quam. Quo voluptatibus dolore eum ea quia alias esse. Unde rerum id maxime in totam aspernatur."], ["key", "abby_torphy_dds"], ["created_at", "2016-01-29 21:57:37.389574"], ["updated_at", "2016-01-29 21:57:37.389574"]]
23013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23014
+  (0.0ms) SAVEPOINT active_record_1
23015
+ 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 21:57:37.392197"], ["updated_at", "2016-01-29 21:57:37.392197"]]
23016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23017
+  (0.4ms) rollback transaction
23018
+  (0.1ms) begin transaction
23019
+  (0.0ms) SAVEPOINT active_record_1
23020
+ SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Aletha Cummerata"], ["job_title", "Legacy Security Associate"], ["greetings", "Rerum ex cum est veritatis."], ["summary", "Et vel maiores quia. Quibusdam ipsum earum explicabo quidem. Odio illo magnam sed consequatur. Qui non omnis omnis. Enim aut incidunt odit rerum perspiciatis a at."], ["key", "aletha_cummerata"], ["created_at", "2016-01-29 21:57:37.396212"], ["updated_at", "2016-01-29 21:57:37.396212"]]
23021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23022
+  (0.0ms) SAVEPOINT active_record_1
23023
+ 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 21:57:37.398135"], ["updated_at", "2016-01-29 21:57:37.398135"]]
23024
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23025
+  (0.6ms) rollback transaction
23026
+  (0.1ms) begin transaction
23027
+  (0.2ms) SAVEPOINT active_record_1
23028
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Mr. Nelle Williamson"], ["job_title", "District Quality Architect"], ["greetings", "Error adipisci optio quo totam qui."], ["summary", "Dolor et aut et id incidunt asperiores in. Sequi ex rem animi praesentium voluptas deleniti. Ipsum illo tenetur odit voluptates dolorem aspernatur. Doloremque et quia. Ut voluptas sed aut pariatur quia consequuntur officia."], ["key", "mr_nelle_williamson"], ["created_at", "2016-01-29 21:57:37.404957"], ["updated_at", "2016-01-29 21:57:37.404957"]]
23029
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23030
+  (0.0ms) SAVEPOINT active_record_1
23031
+ 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 21:57:37.410068"], ["updated_at", "2016-01-29 21:57:37.410068"]]
23032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23033
+  (0.0ms) SAVEPOINT active_record_1
23034
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dicta"], ["key", "dicta"], ["created_at", "2016-01-29 21:57:37.411870"], ["updated_at", "2016-01-29 21:57:37.411870"]]
23035
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23036
+  (0.0ms) SAVEPOINT active_record_1
23037
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "vel"], ["key", "vel"], ["created_at", "2016-01-29 21:57:37.415583"], ["updated_at", "2016-01-29 21:57:37.415583"]]
23038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23039
+  (0.0ms) SAVEPOINT active_record_1
23040
+ 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 Paper Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:57:37.429388"], ["updated_at", "2016-01-29 21:57:37.429388"]]
23041
+ 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]]
23042
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23043
+  (0.0ms) SAVEPOINT active_record_1
23044
+ 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", "Lightweight Cotton Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:57:37.433110"], ["updated_at", "2016-01-29 21:57:37.433110"]]
23045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23046
+  (0.1ms) SAVEPOINT active_record_1
23047
+ 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", "Incredible Leather Keyboard"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:57:37.435878"], ["updated_at", "2016-01-29 21:57:37.435878"]]
23048
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23049
+  (0.1ms) SAVEPOINT active_record_1
23050
+ SQL (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 Car"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:57:37.440513"], ["updated_at", "2016-01-29 21:57:37.440513"]]
23051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23052
+  (1.3ms) rollback transaction
23053
+  (0.1ms) begin transaction
23054
+  (0.0ms) SAVEPOINT active_record_1
23055
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Eliane Bogisich MD"], ["job_title", "Legacy Accountability Orchestrator"], ["greetings", "Voluptas inventore delectus voluptas atque qui deserunt aperiam."], ["summary", "Voluptatem consectetur molestias voluptas et velit. Inventore quos placeat quisquam odit ut aperiam. Labore corrupti exercitationem quam dolore hic sed. Ut velit itaque asperiores qui voluptatibus. In est quis ad."], ["key", "eliane_bogisich_md"], ["created_at", "2016-01-29 21:57:37.460034"], ["updated_at", "2016-01-29 21:57:37.460034"]]
23056
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23057
+  (0.0ms) SAVEPOINT active_record_1
23058
+ 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 21:57:37.462290"], ["updated_at", "2016-01-29 21:57:37.462290"]]
23059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23060
+  (0.0ms) SAVEPOINT active_record_1
23061
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "ut"], ["key", "ut"], ["created_at", "2016-01-29 21:57:37.463849"], ["updated_at", "2016-01-29 21:57:37.463849"]]
23062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23063
+  (0.1ms) SAVEPOINT active_record_1
23064
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "deleniti"], ["key", "deleniti"], ["created_at", "2016-01-29 21:57:37.465381"], ["updated_at", "2016-01-29 21:57:37.465381"]]
23065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23066
+  (0.1ms) SAVEPOINT active_record_1
23067
+ 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 Paper Pants"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:57:37.468848"], ["updated_at", "2016-01-29 21:57:37.468848"]]
23068
+ 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]]
23069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23070
+  (0.0ms) SAVEPOINT active_record_1
23071
+ SQL (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 Lamp"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:57:37.472282"], ["updated_at", "2016-01-29 21:57:37.472282"]]
23072
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23073
+  (0.0ms) SAVEPOINT active_record_1
23074
+ SQL (0.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 Paper Hat"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:57:37.474318"], ["updated_at", "2016-01-29 21:57:37.474318"]]
23075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23076
+  (0.0ms) SAVEPOINT active_record_1
23077
+ SQL (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 Cotton Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:57:37.476254"], ["updated_at", "2016-01-29 21:57:37.476254"]]
23078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23079
+ Portfolio::SiteProject Load (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]]
23080
+  (0.7ms) rollback transaction
23081
+  (0.1ms) begin transaction
23082
+  (0.1ms) SAVEPOINT active_record_1
23083
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nickolas Schinner"], ["job_title", "Forward Accounts Orchestrator"], ["greetings", "Adipisci reiciendis autem laudantium in qui et molestiae."], ["summary", "Sint est voluptate rerum delectus nulla non vel. Quia blanditiis et quam libero. Modi voluptas perspiciatis accusantium error et iusto. Debitis fuga ullam deserunt excepturi."], ["key", "nickolas_schinner"], ["created_at", "2016-01-29 21:57:37.486157"], ["updated_at", "2016-01-29 21:57:37.486157"]]
23084
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23085
+  (0.0ms) SAVEPOINT active_record_1
23086
+ SQL (0.5ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "in"], ["key", "in"], ["created_at", "2016-01-29 21:57:37.488554"], ["updated_at", "2016-01-29 21:57:37.488554"]]
23087
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23088
+  (0.0ms) SAVEPOINT active_record_1
23089
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "perspiciatis"], ["key", "perspiciatis"], ["created_at", "2016-01-29 21:57:37.490535"], ["updated_at", "2016-01-29 21:57:37.490535"]]
23090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23091
+  (0.0ms) SAVEPOINT active_record_1
23092
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "delectus"], ["key", "delectus"], ["created_at", "2016-01-29 21:57:37.492007"], ["updated_at", "2016-01-29 21:57:37.492007"]]
23093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23094
+  (0.1ms) SAVEPOINT active_record_1
23095
+ 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 Bench"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:57:37.507087"], ["updated_at", "2016-01-29 21:57:37.507087"]]
23096
+ 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]]
23097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23098
+  (0.0ms) SAVEPOINT active_record_1
23099
+ SQL (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 Car"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:57:37.510426"], ["updated_at", "2016-01-29 21:57:37.510426"]]
23100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23101
+  (0.0ms) SAVEPOINT active_record_1
23102
+ SQL (0.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 Steel Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:57:37.512608"], ["updated_at", "2016-01-29 21:57:37.512608"]]
23103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23104
+  (0.0ms) SAVEPOINT active_record_1
23105
+ SQL (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 Table"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:57:37.514749"], ["updated_at", "2016-01-29 21:57:37.514749"]]
23106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23107
+  (0.5ms) rollback transaction
23108
+  (0.1ms) begin transaction
23109
+  (0.0ms) SAVEPOINT active_record_1
23110
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Therese Miller"], ["job_title", "Future Solutions Representative"], ["greetings", "Officiis quia quo sed vel optio eos facilis et."], ["summary", "Ea modi voluptatum officiis unde labore qui. Non voluptas vel natus voluptate. Et et tempore consequatur voluptas. Et laborum fugiat ad. Sit consequatur et animi."], ["key", "therese_miller"], ["created_at", "2016-01-29 21:57:37.519322"], ["updated_at", "2016-01-29 21:57:37.519322"]]
23111
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23112
+  (0.0ms) SAVEPOINT active_record_1
23113
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "nostrum"], ["key", "nostrum"], ["created_at", "2016-01-29 21:57:37.521596"], ["updated_at", "2016-01-29 21:57:37.521596"]]
23114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23115
+  (0.0ms) SAVEPOINT active_record_1
23116
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "unde"], ["key", "unde"], ["created_at", "2016-01-29 21:57:37.523389"], ["updated_at", "2016-01-29 21:57:37.523389"]]
23117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23118
+  (0.0ms) SAVEPOINT active_record_1
23119
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "inventore"], ["key", "inventore"], ["created_at", "2016-01-29 21:57:37.525132"], ["updated_at", "2016-01-29 21:57:37.525132"]]
23120
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23121
+  (0.1ms) SAVEPOINT active_record_1
23122
+ 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 Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:57:37.528458"], ["updated_at", "2016-01-29 21:57:37.528458"]]
23123
+ 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]]
23124
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23125
+  (0.0ms) SAVEPOINT active_record_1
23126
+ SQL (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 Hat"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:57:37.531989"], ["updated_at", "2016-01-29 21:57:37.531989"]]
23127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23128
+  (0.0ms) SAVEPOINT active_record_1
23129
+ SQL (0.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 Granite Table"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:57:37.534014"], ["updated_at", "2016-01-29 21:57:37.534014"]]
23130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23131
+  (0.0ms) SAVEPOINT active_record_1
23132
+ SQL (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 Wallet"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:57:37.536213"], ["updated_at", "2016-01-29 21:57:37.536213"]]
23133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23134
+ 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
23135
+  (0.6ms) rollback transaction
23136
+  (0.1ms) begin transaction
23137
+  (0.0ms) SAVEPOINT active_record_1
23138
+ SQL (0.2ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Lew Morar I"], ["job_title", "Customer Integration Liaison"], ["greetings", "Voluptates labore excepturi voluptas at eos debitis sunt ducimus."], ["summary", "Aperiam nemo ea. Esse deserunt nisi asperiores harum. Commodi vero quam aut nesciunt neque."], ["key", "lew_morar_i"], ["created_at", "2016-01-29 21:57:37.542769"], ["updated_at", "2016-01-29 21:57:37.542769"]]
23139
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23140
+  (0.0ms) SAVEPOINT active_record_1
23141
+ SQL (0.4ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Silk Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 21:57:37.544986"], ["updated_at", "2016-01-29 21:57:37.544986"]]
23142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23143
+  (0.0ms) SAVEPOINT active_record_1
23144
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Small Leather Car"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 21:57:37.547144"], ["updated_at", "2016-01-29 21:57:37.547144"]]
23145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23146
+  (0.0ms) SAVEPOINT active_record_1
23147
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Gorgeous Cotton Pants"], ["site_id", 1], ["created_at", "2016-01-29 21:57:37.548864"], ["updated_at", "2016-01-29 21:57:37.548864"]]
23148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23149
+  (0.0ms) SAVEPOINT active_record_1
23150
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Lightweight Linen Gloves"], ["site_id", 1], ["created_at", "2016-01-29 21:57:37.550909"], ["updated_at", "2016-01-29 21:57:37.550909"]]
23151
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23152
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23153
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23154
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23155
+ Portfolio::SiteMenuLink Load (0.1ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23156
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (6.3ms)
23157
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (19.1ms)
23158
+ 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"]]
23159
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
23160
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]]
23161
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
23162
+ 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]]
23163
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
23164
+ 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]]
23165
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
23166
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (209.7ms)
23167
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (278.7ms)
23168
+ 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"]]
23169
+  (1.4ms) rollback transaction
23170
+  (0.1ms) begin transaction
23171
+  (0.1ms) SAVEPOINT active_record_1
23172
+ SQL (0.4ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Jayne Volkman"], ["job_title", "District Program Coordinator"], ["greetings", "Facilis alias corrupti iure dolores."], ["summary", "Id blanditiis doloribus. Autem omnis et esse placeat harum vitae tenetur. Omnis animi vel."], ["key", "jayne_volkman"], ["created_at", "2016-01-29 21:57:37.853722"], ["updated_at", "2016-01-29 21:57:37.853722"]]
23173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23174
+  (0.1ms) SAVEPOINT active_record_1
23175
+ SQL (0.5ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Aluminum Coat"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 21:57:37.859057"], ["updated_at", "2016-01-29 21:57:37.859057"]]
23176
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23177
+  (0.1ms) SAVEPOINT active_record_1
23178
+ SQL (0.2ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "public", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Durable Marble Table"], ["site_id", 1], ["public", "t"], ["created_at", "2016-01-29 21:57:37.863691"], ["updated_at", "2016-01-29 21:57:37.863691"]]
23179
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23180
+  (0.1ms) SAVEPOINT active_record_1
23181
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Heavy Duty Copper Bottle"], ["site_id", 1], ["created_at", "2016-01-29 21:57:37.867682"], ["updated_at", "2016-01-29 21:57:37.867682"]]
23182
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23183
+  (0.1ms) SAVEPOINT active_record_1
23184
+ SQL (0.1ms) INSERT INTO "portfolio_site_items" ("type", "title", "site_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["type", "Portfolio::SiteProject"], ["title", "Enormous Linen Clock"], ["site_id", 1], ["created_at", "2016-01-29 21:57:37.872069"], ["updated_at", "2016-01-29 21:57:37.872069"]]
23185
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23186
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23187
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23188
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23189
+ Portfolio::SiteMenuLink Load (0.1ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23190
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (6.4ms)
23191
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (7.2ms)
23192
+ 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"]]
23193
+  (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"]]
23194
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]]
23195
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
23196
+ 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]]
23197
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
23198
+ 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]]
23199
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
23200
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (11.0ms)
23201
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (25.7ms)
23202
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
23203
+  (1.5ms) rollback transaction
23204
+  (0.1ms) begin transaction
23205
+  (0.1ms) SAVEPOINT active_record_1
23206
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Leon Wintheiser"], ["job_title", "National Interactions Designer"], ["greetings", "Beatae possimus nulla officiis dolor ut."], ["summary", "Et dolorem voluptatem est et et. Numquam atque libero repellendus amet id. Quibusdam ut pariatur voluptatem aut."], ["key", "leon_wintheiser"], ["created_at", "2016-01-29 21:57:37.909385"], ["updated_at", "2016-01-29 21:57:37.909385"]]
23207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23208
+  (0.0ms) SAVEPOINT active_record_1
23209
+ SQL (0.2ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-29 21:57:37.911430"], ["updated_at", "2016-01-29 21:57:37.911430"]]
23210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23211
+  (0.0ms) SAVEPOINT active_record_1
23212
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "dolorem"], ["key", "dolorem"], ["created_at", "2016-01-29 21:57:37.912946"], ["updated_at", "2016-01-29 21:57:37.912946"]]
23213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23214
+  (0.0ms) SAVEPOINT active_record_1
23215
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "rerum"], ["key", "rerum"], ["created_at", "2016-01-29 21:57:37.914641"], ["updated_at", "2016-01-29 21:57:37.914641"]]
23216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23217
+  (0.0ms) SAVEPOINT active_record_1
23218
+ 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 Shirt"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:57:37.917630"], ["updated_at", "2016-01-29 21:57:37.917630"]]
23219
+ 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]]
23220
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23221
+  (0.0ms) SAVEPOINT active_record_1
23222
+ SQL (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 Computer"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:57:37.920640"], ["updated_at", "2016-01-29 21:57:37.920640"]]
23223
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23224
+  (0.0ms) SAVEPOINT active_record_1
23225
+ SQL (0.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 Plate"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:57:37.922586"], ["updated_at", "2016-01-29 21:57:37.922586"]]
23226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23227
+  (0.0ms) SAVEPOINT active_record_1
23228
+ SQL (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-29 21:57:37.924446"], ["updated_at", "2016-01-29 21:57:37.924446"]]
23229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23230
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23231
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23232
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23233
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23234
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (3.2ms)
23235
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.7ms)
23236
+ 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"]]
23237
+  (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"]]
23238
+ Portfolio::SiteProject 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"]]
23239
+ Portfolio::SiteItemImage Exists (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]]
23240
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
23241
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.7ms)
23242
+  (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"]]
23243
+ 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"]]
23244
+ 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]]
23245
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
23246
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.5ms)
23247
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."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"]]
23248
+  (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"]]
23249
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.4ms)
23250
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (16.6ms)
23251
+ 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
23252
+ 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"]]
23253
+  (1.6ms) rollback transaction
23254
+  (0.1ms) begin transaction
23255
+  (0.1ms) SAVEPOINT active_record_1
23256
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Nash Connelly V"], ["job_title", "Internal Accountability Consultant"], ["greetings", "Repudiandae fugit aperiam fuga eveniet."], ["summary", "Velit accusamus aut quo. Libero possimus molestiae facere. Eos molestiae consequatur laudantium velit harum."], ["key", "nash_connelly_v"], ["created_at", "2016-01-29 21:57:37.950020"], ["updated_at", "2016-01-29 21:57:37.950020"]]
23257
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23258
+  (0.1ms) SAVEPOINT active_record_1
23259
+ SQL (0.6ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "tempora"], ["key", "tempora"], ["created_at", "2016-01-29 21:57:37.953436"], ["updated_at", "2016-01-29 21:57:37.953436"]]
23260
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23261
+  (0.0ms) SAVEPOINT active_record_1
23262
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptatem"], ["key", "voluptatem"], ["created_at", "2016-01-29 21:57:37.956979"], ["updated_at", "2016-01-29 21:57:37.956979"]]
23263
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23264
+  (0.0ms) SAVEPOINT active_record_1
23265
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "provident"], ["key", "provident"], ["created_at", "2016-01-29 21:57:37.959112"], ["updated_at", "2016-01-29 21:57:37.959112"]]
23266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23267
+  (0.1ms) SAVEPOINT active_record_1
23268
+ 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 Cotton Knife"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:57:37.963532"], ["updated_at", "2016-01-29 21:57:37.963532"]]
23269
+ 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]]
23270
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23271
+  (0.0ms) SAVEPOINT active_record_1
23272
+ SQL (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 Bottle"], ["site_id", 1], ["site_item_category_id", 2], ["created_at", "2016-01-29 21:57:37.966923"], ["updated_at", "2016-01-29 21:57:37.966923"]]
23273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23274
+  (0.0ms) SAVEPOINT active_record_1
23275
+ SQL (0.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 Bronze Wallet"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:57:37.969203"], ["updated_at", "2016-01-29 21:57:37.969203"]]
23276
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23277
+  (0.1ms) SAVEPOINT active_record_1
23278
+ SQL (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 Bottle"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:57:37.971628"], ["updated_at", "2016-01-29 21:57:37.971628"]]
23279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23280
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23281
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23282
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23283
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23284
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.7ms)
23285
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header.html.erb (3.1ms)
23286
+ 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"]]
23287
+  (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"]]
23288
+ 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"]]
23289
+ Portfolio::SiteItemImage Exists (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]]
23290
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
23291
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (2.8ms)
23292
+  (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"]]
23293
+ 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"]]
23294
+ Portfolio::SiteItemImage Exists (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]]
23295
+ Portfolio::Site Load (0.0ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
23296
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (3.6ms)
23297
+  (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"]]
23298
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = ? AND "portfolio_site_items"."public" = ? AND "portfolio_site_items"."site_item_category_id" IS NULL [["site_id", 1], ["public", "t"]]
23299
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_projects_group.html.erb (0.6ms)
23300
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/index.html.erb (15.8ms)
23301
+ 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
23302
+ 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"]]
23303
+  (1.3ms) rollback transaction
23304
+  (0.1ms) begin transaction
23305
+  (0.1ms) SAVEPOINT active_record_1
23306
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Emie Baumbach"], ["job_title", "Regional Factors Administrator"], ["greetings", "Quisquam sunt quae qui."], ["summary", "Sed cupiditate quia commodi minima perferendis veritatis et. Quasi voluptas facere. Et aut quia explicabo qui. Doloribus odio corrupti et numquam sed vero. Saepe et provident."], ["key", "emie_baumbach"], ["created_at", "2016-01-29 21:57:37.995306"], ["updated_at", "2016-01-29 21:57:37.995306"]]
23307
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23308
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23309
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23310
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)
23311
+  (0.1ms) SELECT COUNT(*) FROM "portfolio_site_items" 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"]]
23312
+ 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]]
23313
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (6.2ms)
23314
+  (0.3ms) rollback transaction
23315
+  (0.1ms) begin transaction
23316
+  (0.1ms) SAVEPOINT active_record_1
23317
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Rashad Waelchi III"], ["job_title", "Principal Accounts Specialist"], ["greetings", "Non nam numquam inventore omnis ut quibusdam magnam."], ["summary", "Minus perspiciatis tempora omnis. Perspiciatis eum nemo autem dolores. Laboriosam natus vel."], ["key", "rashad_waelchi_iii"], ["created_at", "2016-01-29 21:57:38.018209"], ["updated_at", "2016-01-29 21:57:38.018209"]]
23318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23319
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23320
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23321
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (1.5ms)
23322
+  (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"]]
23323
+ 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]]
23324
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (2.8ms)
23325
+  (0.5ms) rollback transaction
23326
+  (0.1ms) begin transaction
23327
+  (0.1ms) SAVEPOINT active_record_1
23328
+ SQL (0.3ms) INSERT INTO "portfolio_sites" ("person_name", "job_title", "greetings", "summary", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["person_name", "Hortense Trantow DVM"], ["job_title", "Regional Configuration Architect"], ["greetings", "Similique quas nam repudiandae praesentium quis."], ["summary", "Eum omnis vel natus accusamus vel porro. Est porro dolor. At nisi maxime. Ut in dolores facilis non quis."], ["key", "hortense_trantow_dvm"], ["created_at", "2016-01-29 21:57:38.027991"], ["updated_at", "2016-01-29 21:57:38.027991"]]
23329
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23330
+  (0.0ms) SAVEPOINT active_record_1
23331
+ SQL (0.3ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "minima"], ["key", "minima"], ["created_at", "2016-01-29 21:57:38.030049"], ["updated_at", "2016-01-29 21:57:38.030049"]]
23332
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23333
+  (0.0ms) SAVEPOINT active_record_1
23334
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_categories" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "voluptas"], ["key", "voluptas"], ["created_at", "2016-01-29 21:57:38.031681"], ["updated_at", "2016-01-29 21:57:38.031681"]]
23335
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23336
+  (0.0ms) SAVEPOINT active_record_1
23337
+ SQL (0.1ms) INSERT INTO "portfolio_site_item_tags" ("name", "key", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "qui"], ["key", "qui"], ["created_at", "2016-01-29 21:57:38.033009"], ["updated_at", "2016-01-29 21:57:38.033009"]]
23338
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23339
+  (0.0ms) SAVEPOINT active_record_1
23340
+ SQL (0.4ms) 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 Aluminum Keyboard"], ["site_id", 1], ["site_item_category_id", 1], ["public", "t"], ["featured", "t"], ["created_at", "2016-01-29 21:57:38.035888"], ["updated_at", "2016-01-29 21:57:38.035888"]]
23341
+ 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]]
23342
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23343
+  (0.1ms) SAVEPOINT active_record_1
23344
+ SQL (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", 2], ["created_at", "2016-01-29 21:57:38.041347"], ["updated_at", "2016-01-29 21:57:38.041347"]]
23345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23346
+  (0.0ms) SAVEPOINT active_record_1
23347
+ SQL (0.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 Granite Knife"], ["site_id", 1], ["site_item_category_id", 2], ["public", "t"], ["created_at", "2016-01-29 21:57:38.043386"], ["updated_at", "2016-01-29 21:57:38.043386"]]
23348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23349
+  (0.0ms) SAVEPOINT active_record_1
23350
+ SQL (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 Pants"], ["site_id", 1], ["site_item_category_id", 1], ["created_at", "2016-01-29 21:57:38.045098"], ["updated_at", "2016-01-29 21:57:38.045098"]]
23351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23352
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23353
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23354
+  (0.0ms) SELECT COUNT(*) FROM "portfolio_site_items" WHERE "portfolio_site_items"."type" IN ('Portfolio::SiteProject') AND "portfolio_site_items"."site_id" = 1 AND "portfolio_site_items"."public" = ? [["public", "t"]]
23355
+ Portfolio::SiteMenuLink Load (0.0ms) SELECT "portfolio_site_menu_links".* FROM "portfolio_site_menu_links" WHERE "portfolio_site_menu_links"."site_id" = ? [["site_id", 1]]
23356
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/shared/_header_menu.html.erb (2.6ms)
23357
+  (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"]]
23358
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
23359
+ Portfolio::SiteItemImage Exists (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]]
23360
+ Portfolio::Site Load (0.1ms) SELECT "portfolio_sites".* FROM "portfolio_sites" WHERE "portfolio_sites"."id" = ? LIMIT 1 [["id", 1]]
23361
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/site_projects/_list.html.erb (3.6ms)
23362
+ 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]]
23363
+ Rendered /Users/messutied/Projects/portfolio/app/views/portfolio/sites/show.html.erb (18.5ms)
23364
+ Portfolio::SiteProject Load (0.1ms) SELECT "portfolio_site_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"]]
23365
+  (1.3ms) rollback transaction