Creating scope :published. Overwriting existing method PushType::Node.published. ActiveRecord::SchemaMigration Load (20.7ms) SELECT "schema_migrations".* FROM "schema_migrations"  (28.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]] ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", :environment]]  (199.2ms) DROP DATABASE IF EXISTS "dummy_development"  (197.3ms) DROP DATABASE IF EXISTS "dummy_test"  (293.8ms) CREATE DATABASE "dummy_development" ENCODING = 'unicode'  (389.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'  (3.3ms) CREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)  (1.8ms) CREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  (0.1ms) SELECT pg_try_advisory_lock(1721091371569202325); ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePushTypeUsers (20170131181200)  (0.1ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class CreatePushTypeUsers < ActiveRecord::Migration[4.2] (called from load at /Users/aaron/.rvm/gems/ruby-2.3.1@push_type/bin/rake:23) SQL (2.1ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"  (2.1ms) CREATE TABLE "push_type_users" ("id" uuid DEFAULT uuid_generate_v4() PRIMARY KEY, "name" character varying, "email" character varying, "field_store" jsonb, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170131181200"]]  (0.7ms) COMMIT Migrating to CreatePushTypeNodes (20170131181201)  (0.1ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class CreatePushTypeNodes < ActiveRecord::Migration[4.2] (called from load at /Users/aaron/.rvm/gems/ruby-2.3.1@push_type/bin/rake:23)  (2.2ms) CREATE TABLE "push_type_nodes" ("id" uuid DEFAULT uuid_generate_v4() PRIMARY KEY, "type" character varying, "title" character varying, "slug" character varying, "field_store" jsonb, "parent_id" uuid, "sort_order" integer, "status" integer, "published_at" timestamp, "published_to" timestamp, "creator_id" uuid, "updater_id" uuid, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "deleted_at" timestamp) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170131181201"]]  (0.4ms) COMMIT Migrating to CreatePushTypeNodeHierarchies (20170131181202)  (0.1ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class CreatePushTypeNodeHierarchies < ActiveRecord::Migration[4.2] (called from load at /Users/aaron/.rvm/gems/ruby-2.3.1@push_type/bin/rake:23)  (0.5ms) CREATE TABLE "push_type_node_hierarchies" ("ancestor_id" uuid NOT NULL, "descendant_id" uuid NOT NULL, "generations" integer NOT NULL)  (0.7ms) CREATE UNIQUE INDEX "node_anc_desc_idx" ON "push_type_node_hierarchies" ("ancestor_id", "descendant_id", "generations")  (0.6ms) CREATE INDEX "node_desc_idx" ON "push_type_node_hierarchies" ("descendant_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170131181202"]]  (0.5ms) COMMIT Migrating to CreatePushTypeAssets (20170131181203)  (0.1ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class CreatePushTypeAssets < ActiveRecord::Migration[4.2] (called from load at /Users/aaron/.rvm/gems/ruby-2.3.1@push_type/bin/rake:23)  (1.9ms) CREATE TABLE "push_type_assets" ("id" uuid DEFAULT uuid_generate_v4() PRIMARY KEY, "file_uid" character varying, "file_name" character varying, "file_size" integer, "file_ext" character varying, "mime_type" character varying, "description" character varying, "uploader_id" uuid, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "deleted_at" timestamp) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170131181203"]]  (0.4ms) COMMIT Migrating to AddFieldStoreDefaultValues (20170131181204)  (0.1ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class AddFieldStoreDefaultValues < ActiveRecord::Migration[4.2] (called from load at /Users/aaron/.rvm/gems/ruby-2.3.1@push_type/bin/rake:23)  (0.2ms) ALTER TABLE "push_type_nodes" ALTER COLUMN "field_store" TYPE jsonb  (0.2ms) ALTER TABLE "push_type_nodes" ALTER COLUMN "field_store" SET DEFAULT '{}'  (0.2ms) UPDATE "push_type_nodes" SET "field_store"='{}' WHERE "field_store" IS NULL  (0.2ms) ALTER TABLE "push_type_nodes" ALTER "field_store" SET NOT NULL  (0.2ms) ALTER TABLE "push_type_users" ALTER COLUMN "field_store" TYPE jsonb  (0.1ms) ALTER TABLE "push_type_users" ALTER COLUMN "field_store" SET DEFAULT '{}'  (0.2ms) UPDATE "push_type_users" SET "field_store"='{}' WHERE "field_store" IS NULL  (0.1ms) ALTER TABLE "push_type_users" ALTER "field_store" SET NOT NULL SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170131181204"]]  (0.4ms) COMMIT Migrating to DropLegacyPushTypeTaxonomies (20170131181205)  (0.1ms) BEGIN DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class DropLegacyPushTypeTaxonomies < ActiveRecord::Migration[4.2] (called from load at /Users/aaron/.rvm/gems/ruby-2.3.1@push_type/bin/rake:23) DEPRECATION WARNING: #table_exists? currently checks both tables and views. This behavior is deprecated and will be changed with Rails 5.1 to only check tables. Use #data_source_exists? instead. (called from up at /Users/aaron/dev/pushcode/push_type/admin/test/dummy/db/migrate/20170131181205_drop_legacy_push_type_taxonomies.push_type.rb:4) DEPRECATION WARNING: #table_exists? currently checks both tables and views. This behavior is deprecated and will be changed with Rails 5.1 to only check tables. Use #data_source_exists? instead. (called from up at /Users/aaron/dev/pushcode/push_type/admin/test/dummy/db/migrate/20170131181205_drop_legacy_push_type_taxonomies.push_type.rb:7) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170131181205"]]  (0.4ms) COMMIT ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", :environment], ["LIMIT", 1]]  (0.1ms) BEGIN SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", 2017-01-31 18:12:17 UTC], ["updated_at", 2017-01-31 18:12:17 UTC]]  (0.4ms) COMMIT  (0.1ms) SELECT pg_advisory_unlock(1721091371569202325) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete FROM pg_constraint c JOIN pg_class t1 ON c.conrelid = t1.oid JOIN pg_class t2 ON c.confrelid = t2.oid JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid JOIN pg_namespace t3 ON c.connamespace = t3.oid WHERE c.contype = 'f' AND t1.relname = 'push_type_assets' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname   (1.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete FROM pg_constraint c JOIN pg_class t1 ON c.conrelid = t1.oid JOIN pg_class t2 ON c.confrelid = t2.oid JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid JOIN pg_namespace t3 ON c.connamespace = t3.oid WHERE c.contype = 'f' AND t1.relname = 'push_type_node_hierarchies' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname   (1.3ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete FROM pg_constraint c JOIN pg_class t1 ON c.conrelid = t1.oid JOIN pg_class t2 ON c.confrelid = t2.oid JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid JOIN pg_namespace t3 ON c.connamespace = t3.oid WHERE c.contype = 'f' AND t1.relname = 'push_type_nodes' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname   (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete FROM pg_constraint c JOIN pg_class t1 ON c.conrelid = t1.oid JOIN pg_class t2 ON c.confrelid = t2.oid JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid JOIN pg_namespace t3 ON c.connamespace = t3.oid WHERE c.contype = 'f' AND t1.relname = 'push_type_users' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname  Creating scope :published. Overwriting existing method PushType::Node.published. Started GET "/" for ::1 at 2017-01-31 18:12:41 +0000 ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by FrontEndController#show as HTML Parameters: {"permalink"=>"home"} PushType::Node Load (0.9ms) SELECT "push_type_nodes".* FROM "push_type_nodes" WHERE "push_type_nodes"."deleted_at" IS NULL AND (push_type_nodes.status = 1 AND push_type_nodes.published_at <= '2017-01-31 18:12:41.147497') AND (push_type_nodes.published_to IS NULL OR push_type_nodes.published_to > '2017-01-31 18:12:41.149252') AND "push_type_nodes"."slug" = $1 AND "push_type_nodes"."parent_id" IS NULL ORDER BY "push_type_nodes"."id" ASC LIMIT $2 [["slug", "home"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/core/app/views/push_type/setup.html.erb Rendered /Users/aaron/dev/pushcode/push_type/core/app/views/push_type/setup.html.erb (9041.7ms) Filter chain halted as :build_presenter rendered or redirected Completed 404 Not Found in 9126ms (Views: 9110.0ms | ActiveRecord: 2.7ms) Started GET "/admin/" for ::1 at 2017-01-31 18:12:52 +0000 Started GET "/admin/nodes" for ::1 at 2017-01-31 18:12:52 +0000 Processing by PushType::Admin::NodesController#index as HTML Rendering /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/index.html.haml within layouts/push_type/admin  (0.4ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "push_type_nodes" WHERE "push_type_nodes"."parent_id" IS NULL AND "push_type_nodes"."deleted_at" IS NULL LIMIT $1 OFFSET $2) subquery_for_count [["LIMIT", 30], ["OFFSET", 0]]  (0.1ms) SELECT COUNT(*) FROM "push_type_nodes" WHERE "push_type_nodes"."parent_id" IS NULL AND "push_type_nodes"."deleted_at" IS NULL Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_new_node_button.html.haml (2.2ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/index.html.haml within layouts/push_type/admin (19.7ms) Completed 200 OK in 570ms (Views: 534.1ms | ActiveRecord: 0.5ms) Started GET "/" for ::1 at 2017-01-31 18:13:59 +0000 Creating scope :published. Overwriting existing method PushType::Node.published. Started GET "/admin/nodes" for ::1 at 2017-01-31 18:14:09 +0000 Processing by FrontEndController#show as HTML Parameters: {"permalink"=>"home"} PushType::Node Load (0.9ms) SELECT "push_type_nodes".* FROM "push_type_nodes" WHERE "push_type_nodes"."deleted_at" IS NULL AND (push_type_nodes.status = 1 AND push_type_nodes.published_at <= '2017-01-31 18:14:09.417094') AND (push_type_nodes.published_to IS NULL OR push_type_nodes.published_to > '2017-01-31 18:14:09.417270') AND "push_type_nodes"."slug" = $1 AND "push_type_nodes"."parent_id" IS NULL ORDER BY "push_type_nodes"."id" ASC LIMIT $2 [["slug", "home"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/core/app/views/push_type/setup.html.erb Rendered /Users/aaron/dev/pushcode/push_type/core/app/views/push_type/setup.html.erb (4.2ms) Filter chain halted as :build_presenter rendered or redirected Completed 404 Not Found in 70ms (Views: 66.7ms | ActiveRecord: 0.9ms) Creating scope :published. Overwriting existing method PushType::Node.published. Processing by PushType::Admin::NodesController#index as HTML Rendering /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/index.html.haml within layouts/push_type/admin  (0.4ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "push_type_nodes" WHERE "push_type_nodes"."parent_id" IS NULL AND "push_type_nodes"."deleted_at" IS NULL LIMIT $1 OFFSET $2) subquery_for_count [["LIMIT", 30], ["OFFSET", 0]]  (0.2ms) SELECT COUNT(*) FROM "push_type_nodes" WHERE "push_type_nodes"."parent_id" IS NULL AND "push_type_nodes"."deleted_at" IS NULL Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_new_node_button.html.haml (1.9ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/index.html.haml within layouts/push_type/admin (16.2ms) Completed 200 OK in 181ms (Views: 177.0ms | ActiveRecord: 0.5ms) Started GET "/admin/nodes/new?kind=page" for ::1 at 2017-01-31 18:14:10 +0000 Processing by PushType::Admin::NodesController#new as HTML Parameters: {"kind"=>"page"} Rendering /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/new.html.haml within layouts/push_type/admin Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.6ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (1.3ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_matrix.html.haml (12.2ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_structure.html.haml (51.6ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_meta_table.html.haml (11.2ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_form_submit.html.haml (4.3ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_form_fields.html.haml (109.9ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/new.html.haml within layouts/push_type/admin (114.6ms) Completed 200 OK in 315ms (Views: 275.5ms | ActiveRecord: 2.7ms) Started POST "/admin/nodes?kind=page" for ::1 at 2017-01-31 18:14:23 +0000 Processing by PushType::Admin::NodesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"BdXBxz7OIPfkkWBF4aBQIvD/2tEWcPRE7Io+qHTOrC7aOKfYAQ2RPA8I8nhq1jrhuQhSEqYnoEUuAkGwdI5rqA==", "page"=>{"title"=>"Test", "slug"=>"test", "section_2"=>{"boxes"=>[{"title"=>"A", "body"=>"A"}, {"title"=>"B", "body"=>"B"}, {"title"=>"C", "body"=>"C"}]}, "published_at(1i)"=>"2017", "published_at(2i)"=>"1", "published_at(3i)"=>"31", "published_at(4i)"=>"18", "published_at(5i)"=>"14", "published_to(1i)"=>"", "published_to(2i)"=>"", "published_to(3i)"=>"", "published_to(4i)"=>"", "published_to(5i)"=>"", "status"=>"draft"}, "kind"=>"page"} Unpermitted parameter: section_2  (0.1ms) BEGIN PushType::Node Exists (0.9ms) SELECT 1 AS one FROM "push_type_nodes" WHERE "push_type_nodes"."slug" = $1 AND "push_type_nodes"."parent_id" IS NULL LIMIT $2 [["slug", "test"], ["LIMIT", 1]] SQL (18.5ms) INSERT INTO "push_type_nodes" ("type", "title", "slug", "field_store", "status", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["type", "Page"], ["title", "Test"], ["slug", "test"], ["field_store", "{\"section_2\":{\"boxes\":[{\"title\":\"A\",\"body\":\"A\"},{\"title\":\"B\",\"body\":\"B\"},{\"title\":\"C\",\"body\":\"C\"}]}}"], ["status", 0], ["created_at", 2017-01-31 18:14:23 UTC], ["updated_at", 2017-01-31 18:14:23 UTC]]  (0.2ms) SELECT pg_try_advisory_lock(1268756593,0) AS t43e0b19d5d5a3d80651efd603233f0ea SQL (11.8ms) INSERT INTO "push_type_node_hierarchies" ("ancestor_id", "descendant_id", "generations") VALUES ($1, $2, $3) [["ancestor_id", "c9b418e8-eea4-4a14-806d-06e0eaf44016"], ["descendant_id", "c9b418e8-eea4-4a14-806d-06e0eaf44016"], ["generations", 0]]  (1.4ms) UPDATE "push_type_nodes" SET "sort_order" = t.seq + -1 FROM ( SELECT "id" AS id, row_number() OVER(ORDER BY sort_order) AS seq FROM "push_type_nodes" WHERE "parent_id" IS NULL ) AS t WHERE "push_type_nodes"."id" = t.id  Page Load (0.3ms) SELECT "push_type_nodes".* FROM "push_type_nodes" WHERE "push_type_nodes"."type" IN ('Page') AND "push_type_nodes"."id" = $1 LIMIT $2 [["id", "c9b418e8-eea4-4a14-806d-06e0eaf44016"], ["LIMIT", 1]] PushType::Node Load (0.3ms) SELECT "push_type_nodes".* FROM "push_type_nodes" WHERE "push_type_nodes"."parent_id" = $1 ORDER BY sort_order [["parent_id", "c9b418e8-eea4-4a14-806d-06e0eaf44016"]]  (0.2ms) SELECT pg_advisory_unlock(1268756593,0) AS t72a86d1481dd79f954d26c4aa8ac469d  (6.4ms) COMMIT Redirected to http://localhost:3000/admin/nodes Completed 302 Found in 84ms (ActiveRecord: 43.5ms) Started GET "/admin/nodes" for ::1 at 2017-01-31 18:14:23 +0000 Processing by PushType::Admin::NodesController#index as HTML Rendering /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/index.html.haml within layouts/push_type/admin  (0.7ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "push_type_nodes" WHERE "push_type_nodes"."parent_id" IS NULL AND "push_type_nodes"."deleted_at" IS NULL LIMIT $1 OFFSET $2) subquery_for_count [["LIMIT", 30], ["OFFSET", 0]] PushType::Node Load (0.4ms) SELECT "push_type_nodes".* FROM "push_type_nodes" WHERE "push_type_nodes"."parent_id" IS NULL AND "push_type_nodes"."deleted_at" IS NULL ORDER BY sort_order LIMIT $1 OFFSET $2 [["LIMIT", 30], ["OFFSET", 0]]  (0.4ms) SELECT COUNT(*) FROM "push_type_nodes" WHERE "push_type_nodes"."parent_id" = $1 AND "push_type_nodes"."deleted_at" IS NULL [["parent_id", "c9b418e8-eea4-4a14-806d-06e0eaf44016"]]  (0.2ms) SELECT COUNT(*) FROM "push_type_nodes" WHERE "push_type_nodes"."parent_id" IS NULL AND "push_type_nodes"."deleted_at" IS NULL Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_new_node_button.html.haml (2.2ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/index.html.haml within layouts/push_type/admin (22.6ms) Completed 200 OK in 191ms (Views: 185.3ms | ActiveRecord: 1.6ms) Started GET "/admin/nodes/c9b418e8-eea4-4a14-806d-06e0eaf44016/edit" for ::1 at 2017-01-31 18:14:25 +0000 Processing by PushType::Admin::NodesController#edit as HTML Parameters: {"id"=>"c9b418e8-eea4-4a14-806d-06e0eaf44016"} PushType::Node Load (0.3ms) SELECT "push_type_nodes".* FROM "push_type_nodes" WHERE "push_type_nodes"."id" = $1 LIMIT $2 [["id", "c9b418e8-eea4-4a14-806d-06e0eaf44016"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/edit.html.haml within layouts/push_type/admin PushType::Node Load (0.7ms) SELECT "push_type_nodes".* FROM "push_type_nodes" INNER JOIN "push_type_node_hierarchies" ON "push_type_nodes"."id" = "push_type_node_hierarchies"."ancestor_id" WHERE "push_type_node_hierarchies"."descendant_id" = $1 AND ("push_type_nodes"."id" != 'c9b418e8-eea4-4a14-806d-06e0eaf44016') ORDER BY "push_type_node_hierarchies".generations asc [["descendant_id", "c9b418e8-eea4-4a14-806d-06e0eaf44016"]] Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.6ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.2ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.2ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_matrix.html.haml (27.9ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_structure.html.haml (33.3ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_meta_table.html.haml (7.8ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_form_submit.html.haml (3.6ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_form_fields.html.haml (58.3ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/edit.html.haml within layouts/push_type/admin (72.2ms) Completed 200 OK in 249ms (Views: 239.7ms | ActiveRecord: 1.1ms) Started GET "/admin/nodes/c9b418e8-eea4-4a14-806d-06e0eaf44016/edit" for ::1 at 2017-01-31 18:16:10 +0000 Processing by PushType::Admin::NodesController#edit as HTML Parameters: {"id"=>"c9b418e8-eea4-4a14-806d-06e0eaf44016"} PushType::Node Load (0.3ms) SELECT "push_type_nodes".* FROM "push_type_nodes" WHERE "push_type_nodes"."id" = $1 LIMIT $2 [["id", "c9b418e8-eea4-4a14-806d-06e0eaf44016"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/edit.html.haml within layouts/push_type/admin PushType::Node Load (0.8ms) SELECT "push_type_nodes".* FROM "push_type_nodes" INNER JOIN "push_type_node_hierarchies" ON "push_type_nodes"."id" = "push_type_node_hierarchies"."ancestor_id" WHERE "push_type_node_hierarchies"."descendant_id" = $1 AND ("push_type_nodes"."id" != 'c9b418e8-eea4-4a14-806d-06e0eaf44016') ORDER BY "push_type_node_hierarchies".generations asc [["descendant_id", "c9b418e8-eea4-4a14-806d-06e0eaf44016"]] Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (1.2ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.3ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.2ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_matrix.html.haml (28.5ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_structure.html.haml (34.7ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_meta_table.html.haml (7.3ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_form_submit.html.haml (4.0ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_form_fields.html.haml (59.9ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/edit.html.haml within layouts/push_type/admin (67.0ms) Completed 200 OK in 227ms (Views: 220.4ms | ActiveRecord: 1.1ms) Started GET "/admin/nodes/c9b418e8-eea4-4a14-806d-06e0eaf44016/edit" for ::1 at 2017-01-31 18:18:26 +0000 Processing by PushType::Admin::NodesController#edit as HTML Parameters: {"id"=>"c9b418e8-eea4-4a14-806d-06e0eaf44016"} PushType::Node Load (0.6ms) SELECT "push_type_nodes".* FROM "push_type_nodes" WHERE "push_type_nodes"."id" = $1 LIMIT $2 [["id", "c9b418e8-eea4-4a14-806d-06e0eaf44016"], ["LIMIT", 1]] Rendering /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/edit.html.haml within layouts/push_type/admin PushType::Node Load (0.7ms) SELECT "push_type_nodes".* FROM "push_type_nodes" INNER JOIN "push_type_node_hierarchies" ON "push_type_nodes"."id" = "push_type_node_hierarchies"."ancestor_id" WHERE "push_type_node_hierarchies"."descendant_id" = $1 AND ("push_type_nodes"."id" != 'c9b418e8-eea4-4a14-806d-06e0eaf44016') ORDER BY "push_type_node_hierarchies".generations asc [["descendant_id", "c9b418e8-eea4-4a14-806d-06e0eaf44016"]] Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.6ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.3ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_default.html.haml (0.1ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_matrix.html.haml (26.6ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/fields/_structure.html.haml (31.6ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_meta_table.html.haml (7.0ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_form_submit.html.haml (2.9ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/_form_fields.html.haml (54.5ms) Rendered /Users/aaron/dev/pushcode/push_type/admin/app/views/push_type/admin/nodes/edit.html.haml within layouts/push_type/admin (60.9ms) Completed 200 OK in 856ms (Views: 849.5ms | ActiveRecord: 1.3ms)