(343.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (93.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140117222800)  (0.2ms) BEGIN  (217.7ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222800"]]  (19.6ms) COMMIT Migrating to CreateVersionableResources (20140117222808)  (0.3ms) BEGIN  (66.0ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (21.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222808"]]  (18.5ms) COMMIT Migrating to CreatePartiallyInclusiveVersionableResources (20140117222814)  (0.4ms) BEGIN  (66.8ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222814"]]  (16.5ms) COMMIT Migrating to CreatePartiallyExclusiveVersionableResources (20140117222815)  (0.3ms) BEGIN  (67.8ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222815"]]  (15.1ms) COMMIT Migrating to CreateNonversionableResources (20140117222828)  (0.3ms) BEGIN  (91.0ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222828"]]  (14.2ms) COMMIT Migrating to CreateParentResources (20140117222840)  (0.3ms) BEGIN  (70.1ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222840"]]  (12.7ms) COMMIT Migrating to CreateChildResources (20140117222841)  (0.3ms) BEGIN  (72.6ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222841"]]  (10.4ms) COMMIT Migrating to CreateGrandChildResources (20140117222842)  (0.5ms) BEGIN  (83.4ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222842"]]  (9.3ms) COMMIT ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1394.9ms) DROP DATABASE IF EXISTS "dummy_test"  (2488.8ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode' SQL (1.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"  (146.3ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  (98.3ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)   (109.1ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  (109.5ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)   (131.7ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  (98.4ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)   (76.3ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  (97.5ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)   (7.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)  (52.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.5ms) SELECT version FROM "schema_migrations"  (9.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222842')  (10.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222841')  (10.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222800')  (10.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222828')  (10.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222814')  (10.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222815')  (10.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222840')  (10.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222808') ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateRubberStampVersions (20140206165158)  (0.2ms) BEGIN  (102.0ms) CREATE TABLE "rubber_stamp_versions" ("id" serial primary key, "versionable_type" character varying(255) NOT NULL, "versionable_id" integer NOT NULL, "user_id" integer, "notes" text, "initial" boolean DEFAULT 'f' NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "pending" boolean DEFAULT 't' NOT NULL, "created_at" timestamp)   (41.4ms) CREATE INDEX "index_rubber_stamp_versions_on_initial" ON "rubber_stamp_versions" ("initial")  (42.3ms) CREATE INDEX "index_rubber_stamp_versions_on_accepted" ON "rubber_stamp_versions" ("accepted")  (41.9ms) CREATE INDEX "index_rubber_stamp_versions_on_declined" ON "rubber_stamp_versions" ("declined")  (57.3ms) CREATE INDEX "index_rubber_stamp_versions_on_pending" ON "rubber_stamp_versions" ("pending")  (3.3ms) ROLLBACK  (17.1ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (62.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140117222800)  (0.2ms) BEGIN  (48.6ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  SQL (1.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222800"]]  (16.5ms) COMMIT Migrating to CreateVersionableResources (20140117222808)  (0.3ms) BEGIN  (107.4ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222808"]]  (9.0ms) COMMIT Migrating to CreatePartiallyInclusiveVersionableResources (20140117222814)  (0.4ms) BEGIN  (97.5ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222814"]]  (17.5ms) COMMIT Migrating to CreatePartiallyExclusiveVersionableResources (20140117222815)  (0.4ms) BEGIN  (109.8ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222815"]]  (16.3ms) COMMIT Migrating to CreateNonversionableResources (20140117222828)  (0.3ms) BEGIN  (89.9ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222828"]]  (15.3ms) COMMIT Migrating to CreateParentResources (20140117222840)  (0.3ms) BEGIN  (101.6ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222840"]]  (16.8ms) COMMIT Migrating to CreateChildResources (20140117222841)  (0.3ms) BEGIN  (119.7ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222841"]]  (7.5ms) COMMIT Migrating to CreateGrandChildResources (20140117222842)  (5.4ms) BEGIN  (97.7ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222842"]]  (12.2ms) COMMIT Migrating to CreateRubberStampVersions (20140206165158)  (0.3ms) BEGIN  (116.8ms) CREATE TABLE "rubber_stamp_versions" ("id" serial primary key, "versionable_type" character varying(255) NOT NULL, "versionable_id" integer NOT NULL, "user_id" integer, "notes" text, "initial" boolean DEFAULT 'f' NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "pending" boolean DEFAULT 't' NOT NULL, "created_at" timestamp)   (50.1ms) CREATE INDEX "index_rubber_stamp_versions_on_initial" ON "rubber_stamp_versions" ("initial")  (42.3ms) CREATE INDEX "index_rubber_stamp_versions_on_accepted" ON "rubber_stamp_versions" ("accepted")  (43.4ms) CREATE INDEX "index_rubber_stamp_versions_on_declined" ON "rubber_stamp_versions" ("declined")  (41.4ms) CREATE INDEX "index_rubber_stamp_versions_on_pending" ON "rubber_stamp_versions" ("pending")  (50.8ms) CREATE INDEX "rubber_stamp_versions_on_versionable" ON "rubber_stamp_versions" ("versionable_type", "versionable_id") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206165158"]]  (7.1ms) COMMIT Migrating to CreateRubberStampVersionAttributes (20140206165205)  (0.4ms) BEGIN  (88.6ms) CREATE TABLE "rubber_stamp_version_attributes" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "name" character varying(255) NOT NULL, "old_value" text, "new_value" text)  (42.8ms) CREATE INDEX "rubber_stamp_version_attriubtes_on_version" ON "rubber_stamp_version_attributes" ("version_type", "version_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206165205"]]  (16.4ms) COMMIT Migrating to CreateRubberStampVersionChildren (20140206165210)  (0.4ms) BEGIN  (100.8ms) CREATE TABLE "rubber_stamp_version_children" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "versionable_type" character varying(255), "versionable_id" integer, "marked_for_removal" boolean DEFAULT 'f' NOT NULL)   (53.9ms) CREATE INDEX "rubber_stamp_version_children_on_version" ON "rubber_stamp_version_children" ("version_type", "version_id")  (42.2ms) CREATE INDEX "rubber_stamp_version_children_on_versionable" ON "rubber_stamp_version_children" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206165210"]]  (13.9ms) COMMIT ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (26.2ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (63.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140117222800)  (0.2ms) BEGIN  (51.9ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  SQL (1.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222800"]]  (14.5ms) COMMIT Migrating to CreateVersionableResources (20140117222808)  (0.3ms) BEGIN  (100.1ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222808"]]  (16.2ms) COMMIT Migrating to CreatePartiallyInclusiveVersionableResources (20140117222814)  (0.4ms) BEGIN  (89.7ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222814"]]  (15.4ms) COMMIT Migrating to CreatePartiallyExclusiveVersionableResources (20140117222815)  (0.3ms) BEGIN  (102.0ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222815"]]  (14.3ms) COMMIT Migrating to CreateNonversionableResources (20140117222828)  (0.3ms) BEGIN  (91.9ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222828"]]  (15.1ms) COMMIT Migrating to CreateParentResources (20140117222840)  (0.3ms) BEGIN  (102.1ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222840"]]  (13.9ms) COMMIT Migrating to CreateChildResources (20140117222841)  (0.3ms) BEGIN  (92.4ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222841"]]  (12.8ms) COMMIT Migrating to CreateGrandChildResources (20140117222842)  (0.3ms) BEGIN  (117.3ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222842"]]  (10.4ms) COMMIT Migrating to CreateRubberStampVersions (20140206173607)  (0.4ms) BEGIN  (91.8ms) CREATE TABLE "rubber_stamp_versions" ("id" serial primary key, "versionable_type" character varying(255) NOT NULL, "versionable_id" integer NOT NULL, "user_id" integer, "notes" text, "initial" boolean DEFAULT 'f' NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "pending" boolean DEFAULT 't' NOT NULL, "created_at" timestamp)   (42.7ms) CREATE INDEX "index_rubber_stamp_versions_on_initial" ON "rubber_stamp_versions" ("initial")  (53.3ms) CREATE INDEX "index_rubber_stamp_versions_on_accepted" ON "rubber_stamp_versions" ("accepted")  (52.9ms) CREATE INDEX "index_rubber_stamp_versions_on_declined" ON "rubber_stamp_versions" ("declined")  (51.7ms) CREATE INDEX "index_rubber_stamp_versions_on_pending" ON "rubber_stamp_versions" ("pending")  (60.3ms) CREATE INDEX "rubber_stamp_versions_on_versionable" ON "rubber_stamp_versions" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206173607"]]  (7.7ms) COMMIT Migrating to CreateRubberStampVersionAttributes (20140206173608)  (0.4ms) BEGIN  (100.0ms) CREATE TABLE "rubber_stamp_version_attributes" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "name" character varying(255) NOT NULL, "old_value" text, "new_value" text)  (42.7ms) CREATE INDEX "rubber_stamp_version_attriubtes_on_version" ON "rubber_stamp_version_attributes" ("version_type", "version_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206173608"]]  (15.8ms) COMMIT Migrating to CreateRubberStampVersionChildren (20140206173609)  (0.3ms) BEGIN  (90.4ms) CREATE TABLE "rubber_stamp_version_children" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "versionable_type" character varying(255), "versionable_id" integer, "marked_for_removal" boolean DEFAULT 'f' NOT NULL)   (53.9ms) CREATE INDEX "rubber_stamp_version_children_on_version" ON "rubber_stamp_version_children" ("version_type", "version_id")  (41.8ms) CREATE INDEX "rubber_stamp_version_children_on_versionable" ON "rubber_stamp_version_children" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206173609"]]  (13.9ms) COMMIT ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1225.3ms) DROP DATABASE IF EXISTS "dummy_test"  (621.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode' SQL (1.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"  (157.0ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  (109.6ms) CREATE TABLE "rubber_stamp_version_attributes" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "name" character varying(255) NOT NULL, "old_value" text, "new_value" text)   (44.2ms) CREATE INDEX "rubber_stamp_version_attriubtes_on_version" ON "rubber_stamp_version_attributes" USING btree ("version_type", "version_id")  (96.0ms) CREATE TABLE "rubber_stamp_version_children" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "versionable_type" character varying(255), "versionable_id" integer, "marked_for_removal" boolean DEFAULT 'f' NOT NULL)   (53.3ms) CREATE INDEX "rubber_stamp_version_children_on_version" ON "rubber_stamp_version_children" USING btree ("version_type", "version_id")  (49.9ms) CREATE INDEX "rubber_stamp_version_children_on_versionable" ON "rubber_stamp_version_children" USING btree ("versionable_type", "versionable_id")  (109.6ms) CREATE TABLE "rubber_stamp_versions" ("id" serial primary key, "versionable_type" character varying(255) NOT NULL, "versionable_id" integer NOT NULL, "user_id" integer, "notes" text, "initial" boolean DEFAULT 'f' NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "pending" boolean DEFAULT 't' NOT NULL, "created_at" timestamp)  (64.6ms) CREATE INDEX "index_rubber_stamp_versions_on_accepted" ON "rubber_stamp_versions" USING btree ("accepted")  (63.9ms) CREATE INDEX "index_rubber_stamp_versions_on_declined" ON "rubber_stamp_versions" USING btree ("declined")  (62.5ms) CREATE INDEX "index_rubber_stamp_versions_on_initial" ON "rubber_stamp_versions" USING btree ("initial")  (73.6ms) CREATE INDEX "index_rubber_stamp_versions_on_pending" ON "rubber_stamp_versions" USING btree ("pending")  (62.4ms) CREATE INDEX "rubber_stamp_versions_on_versionable" ON "rubber_stamp_versions" USING btree ("versionable_type", "versionable_id")  (120.5ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  (109.1ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)   (120.6ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  (109.5ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)   (98.5ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  (54.1ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)   (98.4ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  (7.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (52.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.8ms) SELECT version FROM "schema_migrations"  (7.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140206173609')  (10.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222841')  (10.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222842')  (10.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222800')  (10.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140206173608')  (10.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222828')  (10.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222814')  (10.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140206173607')  (10.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222815')  (10.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222840')  (10.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140117222808')  (17.1ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (51.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140117222800)  (0.4ms) BEGIN  (47.7ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  SQL (1.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222800"]]  (3.4ms) COMMIT Migrating to CreateVersionableResources (20140117222808)  (0.3ms) BEGIN  (99.2ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222808"]]  (16.2ms) COMMIT Migrating to CreatePartiallyInclusiveVersionableResources (20140117222814)  (0.3ms) BEGIN  (86.7ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222814"]]  (7.5ms) COMMIT Migrating to CreatePartiallyExclusiveVersionableResources (20140117222815)  (0.3ms) BEGIN  (70.1ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222815"]]  (12.6ms) COMMIT Migrating to CreateNonversionableResources (20140117222828)  (0.3ms) BEGIN  (93.4ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222828"]]  (22.9ms) COMMIT Migrating to CreateParentResources (20140117222840)  (0.3ms) BEGIN  (93.6ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222840"]]  (10.7ms) COMMIT Migrating to CreateChildResources (20140117222841)  (0.3ms) BEGIN  (83.6ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222841"]]  (20.5ms) COMMIT Migrating to CreateGrandChildResources (20140117222842)  (0.4ms) BEGIN  (95.1ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222842"]]  (8.3ms) COMMIT Migrating to CreateRubberStampVersions (20140206173607)  (0.3ms) BEGIN  (93.7ms) CREATE TABLE "rubber_stamp_versions" ("id" serial primary key, "versionable_type" character varying(255) NOT NULL, "versionable_id" integer NOT NULL, "user_id" integer, "notes" text, "initial" boolean DEFAULT 'f' NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "pending" boolean DEFAULT 't' NOT NULL, "created_at" timestamp)   (42.7ms) CREATE INDEX "index_rubber_stamp_versions_on_initial" ON "rubber_stamp_versions" ("initial")  (42.2ms) CREATE INDEX "index_rubber_stamp_versions_on_accepted" ON "rubber_stamp_versions" ("accepted")  (40.1ms) CREATE INDEX "index_rubber_stamp_versions_on_declined" ON "rubber_stamp_versions" ("declined")  (30.2ms) CREATE INDEX "index_rubber_stamp_versions_on_pending" ON "rubber_stamp_versions" ("pending")  (48.4ms) CREATE INDEX "rubber_stamp_versions_on_versionable" ON "rubber_stamp_versions" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206173607"]]  (7.8ms) COMMIT Migrating to CreateRubberStampVersionAttributes (20140206173608)  (0.3ms) BEGIN  (92.0ms) CREATE TABLE "rubber_stamp_version_attributes" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "name" character varying(255) NOT NULL, "old_value" text, "new_value" text)  (42.7ms) CREATE INDEX "rubber_stamp_version_attriubtes_on_version" ON "rubber_stamp_version_attributes" ("version_type", "version_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206173608"]]  (12.4ms) COMMIT Migrating to CreateRubberStampVersionChildren (20140206173609)  (1.1ms) BEGIN  (92.4ms) CREATE TABLE "rubber_stamp_version_children" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "versionable_type" character varying(255), "versionable_id" integer, "marked_for_removal" boolean DEFAULT 'f' NOT NULL)   (31.9ms) CREATE INDEX "rubber_stamp_version_children_on_version" ON "rubber_stamp_version_children" ("version_type", "version_id")  (30.9ms) CREATE INDEX "rubber_stamp_version_children_on_versionable" ON "rubber_stamp_version_children" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206173609"]]  (9.7ms) COMMIT ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (15.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (74.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140117222800)  (0.3ms) BEGIN  (49.8ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  SQL (1.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222800"]]  (15.2ms) COMMIT Migrating to CreateVersionableResources (20140117222808)  (0.3ms) BEGIN  (65.6ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222808"]]  (17.2ms) COMMIT Migrating to CreatePartiallyInclusiveVersionableResources (20140117222814)  (0.3ms) BEGIN  (88.8ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222814"]]  (16.5ms) COMMIT Migrating to CreatePartiallyExclusiveVersionableResources (20140117222815)  (0.3ms) BEGIN  (67.6ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222815"]]  (15.1ms) COMMIT Migrating to CreateNonversionableResources (20140117222828)  (0.3ms) BEGIN  (75.0ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222828"]]  (7.6ms) COMMIT Migrating to CreateParentResources (20140117222840)  (0.3ms) BEGIN  (92.3ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222840"]]  (11.9ms) COMMIT Migrating to CreateChildResources (20140117222841)  (0.3ms) BEGIN  (70.7ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222841"]]  (22.4ms) COMMIT Migrating to CreateGrandChildResources (20140117222842)  (0.3ms) BEGIN  (74.0ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222842"]]  (8.8ms) COMMIT Migrating to CreateRubberStampVersions (20140206204853)  (0.3ms) BEGIN  (70.4ms) CREATE TABLE "rubber_stamp_versions" ("id" serial primary key, "versionable_type" character varying(255) NOT NULL, "versionable_id" integer NOT NULL, "user_id" integer, "notes" text, "initial" boolean DEFAULT 'f' NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "pending" boolean DEFAULT 't' NOT NULL, "created_at" timestamp)   (42.3ms) CREATE INDEX "index_rubber_stamp_versions_on_initial" ON "rubber_stamp_versions" ("initial")  (42.2ms) CREATE INDEX "index_rubber_stamp_versions_on_accepted" ON "rubber_stamp_versions" ("accepted")  (30.9ms) CREATE INDEX "index_rubber_stamp_versions_on_declined" ON "rubber_stamp_versions" ("declined")  (30.0ms) CREATE INDEX "index_rubber_stamp_versions_on_pending" ON "rubber_stamp_versions" ("pending")  (40.5ms) CREATE INDEX "rubber_stamp_versions_on_versionable" ON "rubber_stamp_versions" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204853"]]  (15.9ms) COMMIT Migrating to CreateRubberStampVersionAttributes (20140206204910)  (0.3ms) BEGIN  (124.5ms) CREATE TABLE "rubber_stamp_version_attributes" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "name" character varying(255) NOT NULL, "old_value" text, "new_value" text)  (32.2ms) CREATE INDEX "rubber_stamp_version_attriubtes_on_version" ON "rubber_stamp_version_attributes" ("version_type", "version_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204910"]]  (13.0ms) COMMIT Migrating to CreateRubberStampVersionChildren (20140206204920)  (0.3ms) BEGIN  (71.0ms) CREATE TABLE "rubber_stamp_version_children" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "versionable_type" character varying(255), "versionable_id" integer, "association_name" character varying(255) NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL)   (2.0ms) ROLLBACK  (15.6ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (51.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140117222800)  (0.2ms) BEGIN  (50.4ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  SQL (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222800"]]  (10.5ms) COMMIT Migrating to CreateVersionableResources (20140117222808)  (0.3ms) BEGIN  (87.4ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222808"]]  (17.7ms) COMMIT Migrating to CreatePartiallyInclusiveVersionableResources (20140117222814)  (0.3ms) BEGIN  (99.3ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222814"]]  (17.1ms) COMMIT Migrating to CreatePartiallyExclusiveVersionableResources (20140117222815)  (0.3ms) BEGIN  (89.0ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222815"]]  (16.1ms) COMMIT Migrating to CreateNonversionableResources (20140117222828)  (0.3ms) BEGIN  (101.3ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222828"]]  (13.4ms) COMMIT Migrating to CreateParentResources (20140117222840)  (0.5ms) BEGIN  (101.2ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222840"]]  (14.1ms) COMMIT Migrating to CreateChildResources (20140117222841)  (0.3ms) BEGIN  (105.0ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222841"]]  (10.9ms) COMMIT Migrating to CreateGrandChildResources (20140117222842)  (0.4ms) BEGIN  (93.0ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222842"]]  (13.0ms) COMMIT Migrating to CreateRubberStampVersions (20140206204853)  (0.5ms) BEGIN  (100.2ms) CREATE TABLE "rubber_stamp_versions" ("id" serial primary key, "versionable_type" character varying(255) NOT NULL, "versionable_id" integer NOT NULL, "user_id" integer, "notes" text, "initial" boolean DEFAULT 'f' NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "pending" boolean DEFAULT 't' NOT NULL, "created_at" timestamp)   (42.6ms) CREATE INDEX "index_rubber_stamp_versions_on_initial" ON "rubber_stamp_versions" ("initial")  (42.2ms) CREATE INDEX "index_rubber_stamp_versions_on_accepted" ON "rubber_stamp_versions" ("accepted")  (41.8ms) CREATE INDEX "index_rubber_stamp_versions_on_declined" ON "rubber_stamp_versions" ("declined")  (51.9ms) CREATE INDEX "index_rubber_stamp_versions_on_pending" ON "rubber_stamp_versions" ("pending")  (41.6ms) CREATE INDEX "rubber_stamp_versions_on_versionable" ON "rubber_stamp_versions" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204853"]]  (17.4ms) COMMIT Migrating to CreateRubberStampVersionAttributes (20140206204910)  (0.3ms) BEGIN  (89.2ms) CREATE TABLE "rubber_stamp_version_attributes" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "name" character varying(255) NOT NULL, "old_value" text, "new_value" text)  (42.9ms) CREATE INDEX "rubber_stamp_version_attriubtes_on_version" ON "rubber_stamp_version_attributes" ("version_type", "version_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204910"]]  (16.1ms) COMMIT Migrating to CreateRubberStampVersionChildren (20140206204920)  (0.3ms) BEGIN  (101.4ms) CREATE TABLE "rubber_stamp_version_children" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "versionable_type" character varying(255), "versionable_id" integer, "association_name" character varying(255) NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL)   (42.7ms) CREATE INDEX "rubber_stamp_version_children_on_association" ON "rubber_stamp_version_children" ("association_name")  (44.0ms) CREATE INDEX "rubber_stamp_version_children_on_version" ON "rubber_stamp_version_children" ("version_type", "version_id")  (64.1ms) CREATE INDEX "rubber_stamp_version_children_on_versionable" ON "rubber_stamp_version_children" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204920"]]  (11.6ms) COMMIT ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (89.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (74.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140117222800)  (0.2ms) BEGIN  (63.3ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  SQL (1.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222800"]]  (8.0ms) COMMIT Migrating to CreateVersionableResources (20140117222808)  (0.3ms) BEGIN  (97.7ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222808"]]  (6.9ms) COMMIT Migrating to CreatePartiallyInclusiveVersionableResources (20140117222814)  (0.3ms) BEGIN  (95.6ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222814"]]  (17.3ms) COMMIT Migrating to CreatePartiallyExclusiveVersionableResources (20140117222815)  (0.3ms) BEGIN  (88.7ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222815"]]  (16.2ms) COMMIT Migrating to CreateNonversionableResources (20140117222828)  (0.3ms) BEGIN  (89.8ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222828"]]  (15.2ms) COMMIT Migrating to CreateParentResources (20140117222840)  (0.3ms) BEGIN  (102.0ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222840"]]  (14.1ms) COMMIT Migrating to CreateChildResources (20140117222841)  (0.3ms) BEGIN  (91.8ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222841"]]  (13.0ms) COMMIT Migrating to CreateGrandChildResources (20140117222842)  (0.3ms) BEGIN  (104.4ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222842"]]  (12.1ms) COMMIT Migrating to CreateHandlerResources (20140118222842)  (0.3ms) BEGIN  (89.3ms) CREATE TABLE "handler_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "accept_count" integer DEFAULT 0 NOT NULL, "decline_count" integer DEFAULT 0 NOT NULL, "accepted_revisions_count" integer DEFAULT 0 NOT NULL, "declined_revisions_count" integer DEFAULT 0 NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140118222842"]]  (10.4ms) COMMIT Migrating to CreateRubberStampVersions (20140206204853)  (0.3ms) BEGIN  (88.3ms) CREATE TABLE "rubber_stamp_versions" ("id" serial primary key, "versionable_type" character varying(255) NOT NULL, "versionable_id" integer NOT NULL, "user_id" integer, "notes" text, "initial" boolean DEFAULT 'f' NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "pending" boolean DEFAULT 't' NOT NULL, "created_at" timestamp)   (42.6ms) CREATE INDEX "index_rubber_stamp_versions_on_initial" ON "rubber_stamp_versions" ("initial")  (42.1ms) CREATE INDEX "index_rubber_stamp_versions_on_accepted" ON "rubber_stamp_versions" ("accepted")  (64.6ms) CREATE INDEX "index_rubber_stamp_versions_on_declined" ON "rubber_stamp_versions" ("declined")  (40.9ms) CREATE INDEX "index_rubber_stamp_versions_on_pending" ON "rubber_stamp_versions" ("pending")  (38.5ms) CREATE INDEX "rubber_stamp_versions_on_versionable" ON "rubber_stamp_versions" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204853"]]  (7.2ms) COMMIT Migrating to CreateRubberStampVersionAttributes (20140206204910)  (0.5ms) BEGIN  (98.4ms) CREATE TABLE "rubber_stamp_version_attributes" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "name" character varying(255) NOT NULL, "old_value" text, "new_value" text)  (54.0ms) CREATE INDEX "rubber_stamp_version_attriubtes_on_version" ON "rubber_stamp_version_attributes" ("version_type", "version_id") SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204910"]]  (16.2ms) COMMIT Migrating to CreateRubberStampVersionChildren (20140206204920)  (0.3ms) BEGIN  (95.6ms) CREATE TABLE "rubber_stamp_version_children" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "versionable_type" character varying(255), "versionable_id" integer, "association_name" character varying(255) NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL)   (44.5ms) CREATE INDEX "rubber_stamp_version_children_on_association" ON "rubber_stamp_version_children" ("association_name")  (42.0ms) CREATE INDEX "rubber_stamp_version_children_on_version" ON "rubber_stamp_version_children" ("version_type", "version_id")  (41.6ms) CREATE INDEX "rubber_stamp_version_children_on_versionable" ON "rubber_stamp_version_children" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204920"]]  (13.0ms) COMMIT ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (69.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (123.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140117222800)  (0.2ms) BEGIN  (88.1ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  SQL (1.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222800"]]  (24.3ms) COMMIT Migrating to CreateVersionableResources (20140117222808)  (2.3ms) BEGIN  (78.6ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222808"]]  (11.9ms) COMMIT Migrating to CreatePartiallyInclusiveVersionableResources (20140117222814)  (0.3ms) BEGIN  (76.7ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222814"]]  (11.8ms) COMMIT Migrating to CreatePartiallyExclusiveVersionableResources (20140117222815)  (0.4ms) BEGIN  (71.2ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222815"]]  (10.4ms) COMMIT Migrating to CreateNonversionableResources (20140117222828)  (0.3ms) BEGIN  (71.5ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222828"]]  (21.1ms) COMMIT Migrating to CreateParentResources (20140117222840)  (0.3ms) BEGIN  (73.3ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222840"]]  (8.3ms) COMMIT Migrating to CreateChildResources (20140117222841)  (0.5ms) BEGIN  (73.9ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222841"]]  (8.5ms) COMMIT Migrating to CreateGrandChildResources (20140117222842)  (0.4ms) BEGIN  (86.5ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222842"]]  (16.7ms) COMMIT Migrating to CreateHandlerResources (20140118222842)  (0.4ms) BEGIN  (159.3ms) CREATE TABLE "handler_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "create_count" integer DEFAULT 0 NOT NULL, "accept_count" integer DEFAULT 0 NOT NULL, "decline_count" integer DEFAULT 0 NOT NULL, "created_revisions_count" integer DEFAULT 0 NOT NULL, "accepted_revisions_count" integer DEFAULT 0 NOT NULL, "declined_revisions_count" integer DEFAULT 0 NOT NULL, "created" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140118222842"]]  (6.1ms) COMMIT Migrating to CreateRubberStampVersions (20140206204853)  (0.3ms) BEGIN  (87.1ms) CREATE TABLE "rubber_stamp_versions" ("id" serial primary key, "versionable_type" character varying(255) NOT NULL, "versionable_id" integer NOT NULL, "user_id" integer, "notes" text, "initial" boolean DEFAULT 'f' NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "pending" boolean DEFAULT 't' NOT NULL, "created_at" timestamp)   (52.4ms) CREATE INDEX "index_rubber_stamp_versions_on_initial" ON "rubber_stamp_versions" ("initial")  (34.4ms) CREATE INDEX "index_rubber_stamp_versions_on_accepted" ON "rubber_stamp_versions" ("accepted")  (30.3ms) CREATE INDEX "index_rubber_stamp_versions_on_declined" ON "rubber_stamp_versions" ("declined")  (40.1ms) CREATE INDEX "index_rubber_stamp_versions_on_pending" ON "rubber_stamp_versions" ("pending")  (40.5ms) CREATE INDEX "rubber_stamp_versions_on_versionable" ON "rubber_stamp_versions" ("versionable_type", "versionable_id") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204853"]]  (11.0ms) COMMIT Migrating to CreateRubberStampVersionAttributes (20140206204910)  (0.3ms) BEGIN  (71.8ms) CREATE TABLE "rubber_stamp_version_attributes" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "name" character varying(255) NOT NULL, "old_value" text, "new_value" text)  (42.7ms) CREATE INDEX "rubber_stamp_version_attriubtes_on_version" ON "rubber_stamp_version_attributes" ("version_type", "version_id") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204910"]]  (9.6ms) COMMIT Migrating to CreateRubberStampVersionChildren (20140206204920)  (0.4ms) BEGIN  (83.9ms) CREATE TABLE "rubber_stamp_version_children" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "versionable_type" character varying(255), "versionable_id" integer, "association_name" character varying(255) NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL)   (44.3ms) CREATE INDEX "rubber_stamp_version_children_on_association" ON "rubber_stamp_version_children" ("association_name")  (40.6ms) CREATE INDEX "rubber_stamp_version_children_on_version" ON "rubber_stamp_version_children" ("version_type", "version_id")  (33.6ms) CREATE INDEX "rubber_stamp_version_children_on_versionable" ON "rubber_stamp_version_children" ("versionable_type", "versionable_id") SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204920"]]  (14.4ms) COMMIT ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (10.0ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (56.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140117222800)  (0.2ms) BEGIN  (65.9ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  SQL (1.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222800"]]  (6.1ms) COMMIT Migrating to CreateVersionableResources (20140117222808)  (0.3ms) BEGIN  (73.3ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222808"]]  (8.4ms) COMMIT Migrating to CreatePartiallyInclusiveVersionableResources (20140117222814)  (0.4ms) BEGIN  (105.2ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222814"]]  (7.4ms) COMMIT Migrating to CreatePartiallyExclusiveVersionableResources (20140117222815)  (0.3ms) BEGIN  (63.5ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222815"]]  (7.4ms) COMMIT Migrating to CreateNonversionableResources (20140117222828)  (0.3ms) BEGIN  (63.7ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222828"]]  (17.2ms) COMMIT Migrating to CreateParentResources (20140117222840)  (0.4ms) BEGIN  (83.1ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222840"]]  (13.3ms) COMMIT Migrating to CreateChildResources (20140117222841)  (0.3ms) BEGIN  (79.7ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222841"]]  (13.6ms) COMMIT Migrating to CreateGrandChildResources (20140117222842)  (0.3ms) BEGIN  (81.0ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222842"]]  (12.9ms) COMMIT Migrating to CreateHandlerResources (20140118222842)  (0.3ms) BEGIN  (67.3ms) CREATE TABLE "handler_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "create_count" integer DEFAULT 0 NOT NULL, "accept_count" integer DEFAULT 0 NOT NULL, "decline_count" integer DEFAULT 0 NOT NULL, "created_revisions_count" integer DEFAULT 0 NOT NULL, "accepted_revisions_count" integer DEFAULT 0 NOT NULL, "declined_revisions_count" integer DEFAULT 0 NOT NULL, "has_been_created" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140118222842"]]  (12.0ms) COMMIT Migrating to CreateRubberStampVersions (20140206204853)  (0.4ms) BEGIN  (70.5ms) CREATE TABLE "rubber_stamp_versions" ("id" serial primary key, "versionable_type" character varying(255) NOT NULL, "versionable_id" integer NOT NULL, "user_id" integer, "notes" text, "initial" boolean DEFAULT 'f' NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "pending" boolean DEFAULT 't' NOT NULL, "created_at" timestamp)   (31.4ms) CREATE INDEX "index_rubber_stamp_versions_on_initial" ON "rubber_stamp_versions" ("initial")  (30.7ms) CREATE INDEX "index_rubber_stamp_versions_on_accepted" ON "rubber_stamp_versions" ("accepted")  (41.4ms) CREATE INDEX "index_rubber_stamp_versions_on_declined" ON "rubber_stamp_versions" ("declined")  (42.3ms) CREATE INDEX "index_rubber_stamp_versions_on_pending" ON "rubber_stamp_versions" ("pending")  (27.9ms) CREATE INDEX "rubber_stamp_versions_on_versionable" ON "rubber_stamp_versions" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204853"]]  (52.6ms) COMMIT Migrating to CreateRubberStampVersionAttributes (20140206204910)  (0.3ms) BEGIN  (64.1ms) CREATE TABLE "rubber_stamp_version_attributes" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "name" character varying(255) NOT NULL, "old_value" text, "new_value" text)  (31.7ms) CREATE INDEX "rubber_stamp_version_attriubtes_on_version" ON "rubber_stamp_version_attributes" ("version_type", "version_id") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204910"]]  (17.0ms) COMMIT Migrating to CreateRubberStampVersionChildren (20140206204920)  (0.3ms) BEGIN  (82.8ms) CREATE TABLE "rubber_stamp_version_children" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "versionable_type" character varying(255), "versionable_id" integer, "association_name" character varying(255) NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL)   (31.7ms) CREATE INDEX "rubber_stamp_version_children_on_association" ON "rubber_stamp_version_children" ("association_name")  (31.0ms) CREATE INDEX "rubber_stamp_version_children_on_version" ON "rubber_stamp_version_children" ("version_type", "version_id")  (30.4ms) CREATE INDEX "rubber_stamp_version_children_on_versionable" ON "rubber_stamp_version_children" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204920"]]  (13.2ms) COMMIT ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (26.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140117222800)  (0.2ms) BEGIN  (276.6ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  PG::DuplicateTable: ERROR: relation "users" already exists : CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  (0.3ms) ROLLBACK  (85.1ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (58.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140117222800)  (0.2ms) BEGIN  (39.9ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL)  SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222800"]]  (29.0ms) COMMIT Migrating to CreateVersionableResources (20140117222808)  (0.4ms) BEGIN  (86.1ms) CREATE TABLE "versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (13.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222808"]]  (26.5ms) COMMIT Migrating to CreatePartiallyInclusiveVersionableResources (20140117222814)  (0.3ms) BEGIN  (99.6ms) CREATE TABLE "partially_inclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222814"]]  (7.8ms) COMMIT Migrating to CreatePartiallyExclusiveVersionableResources (20140117222815)  (0.4ms) BEGIN  (83.7ms) CREATE TABLE "partially_exclusive_versionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222815"]]  (16.3ms) COMMIT Migrating to CreateNonversionableResources (20140117222828)  (0.4ms) BEGIN  (106.9ms) CREATE TABLE "nonversionable_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222828"]]  (7.9ms) COMMIT Migrating to CreateParentResources (20140117222840)  (0.3ms) BEGIN  (76.0ms) CREATE TABLE "parent_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222840"]]  (16.1ms) COMMIT Migrating to CreateChildResources (20140117222841)  (0.4ms) BEGIN  (68.2ms) CREATE TABLE "child_resources" ("id" serial primary key, "parent_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222841"]]  (13.0ms) COMMIT Migrating to CreateGrandChildResources (20140117222842)  (0.3ms) BEGIN  (91.6ms) CREATE TABLE "grand_child_resources" ("id" serial primary key, "child_resource_id" integer, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140117222842"]]  (12.9ms) COMMIT Migrating to CreateHandlerResources (20140118222842)  (0.4ms) BEGIN  (105.8ms) CREATE TABLE "handler_resources" ("id" serial primary key, "r_boolean" boolean, "r_date" date, "r_datetime" timestamp, "r_decimal" decimal, "r_float" float, "r_integer" integer, "r_string" character varying(255), "r_text" text, "r_time" time, "create_count" integer DEFAULT 0 NOT NULL, "accept_count" integer DEFAULT 0 NOT NULL, "decline_count" integer DEFAULT 0 NOT NULL, "created_revisions_count" integer DEFAULT 0 NOT NULL, "accepted_revisions_count" integer DEFAULT 0 NOT NULL, "declined_revisions_count" integer DEFAULT 0 NOT NULL, "has_been_created" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp, "updated_at" timestamp)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140118222842"]]  (11.9ms) COMMIT Migrating to CreateRubberStampVersions (20140206204853)  (0.5ms) BEGIN  (106.4ms) CREATE TABLE "rubber_stamp_versions" ("id" serial primary key, "versionable_type" character varying(255) NOT NULL, "versionable_id" integer NOT NULL, "user_id" integer, "notes" text, "initial" boolean DEFAULT 'f' NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL, "accepted" boolean DEFAULT 'f' NOT NULL, "declined" boolean DEFAULT 'f' NOT NULL, "pending" boolean DEFAULT 't' NOT NULL, "created_at" timestamp)   (50.2ms) CREATE INDEX "index_rubber_stamp_versions_on_initial" ON "rubber_stamp_versions" ("initial")  (42.9ms) CREATE INDEX "index_rubber_stamp_versions_on_accepted" ON "rubber_stamp_versions" ("accepted")  (42.2ms) CREATE INDEX "index_rubber_stamp_versions_on_declined" ON "rubber_stamp_versions" ("declined")  (31.8ms) CREATE INDEX "index_rubber_stamp_versions_on_pending" ON "rubber_stamp_versions" ("pending")  (54.0ms) CREATE INDEX "rubber_stamp_versions_on_versionable" ON "rubber_stamp_versions" ("versionable_type", "versionable_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204853"]]  (19.6ms) COMMIT Migrating to CreateRubberStampVersionAttributes (20140206204910)  (0.4ms) BEGIN  (85.0ms) CREATE TABLE "rubber_stamp_version_attributes" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "name" character varying(255) NOT NULL, "old_value" text, "new_value" text)  (64.2ms) CREATE INDEX "rubber_stamp_version_attriubtes_on_version" ON "rubber_stamp_version_attributes" ("version_type", "version_id") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204910"]]  (18.3ms) COMMIT Migrating to CreateRubberStampVersionChildren (20140206204920)  (0.3ms) BEGIN  (98.2ms) CREATE TABLE "rubber_stamp_version_children" ("id" serial primary key, "version_type" character varying(255) NOT NULL, "version_id" integer NOT NULL, "versionable_type" character varying(255), "versionable_id" integer, "association_name" character varying(255) NOT NULL, "marked_for_removal" boolean DEFAULT 'f' NOT NULL)   (43.0ms) CREATE INDEX "rubber_stamp_version_children_on_association" ON "rubber_stamp_version_children" ("association_name")  (32.1ms) CREATE INDEX "rubber_stamp_version_children_on_version" ON "rubber_stamp_version_children" ("version_type", "version_id")  (45.0ms) CREATE INDEX "rubber_stamp_version_children_on_versionable" ON "rubber_stamp_version_children" ("versionable_type", "versionable_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140206204920"]]  (13.5ms) COMMIT ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"